Remove build directories
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
CompileFlags:
|
||||
Remove: [-f*, -m*]
|
||||
@@ -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"]
|
||||
@@ -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"]
|
||||
}
|
||||
78
esp32-thread/border-router/.gitignore
vendored
78
esp32-thread/border-router/.gitignore
vendored
@@ -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
|
||||
@@ -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
|
||||
}
|
||||
15
esp32-thread/border-router/.vscode/launch.json
vendored
15
esp32-thread/border-router/.vscode/launch.json
vendored
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "gdbtarget",
|
||||
"request": "attach",
|
||||
"name": "Eclipse CDT GDB Adapter"
|
||||
},
|
||||
{
|
||||
"type": "espidf",
|
||||
"name": "Launch",
|
||||
"request": "launch"
|
||||
}
|
||||
]
|
||||
}
|
||||
19
esp32-thread/border-router/.vscode/settings.json
vendored
19
esp32-thread/border-router/.vscode/settings.json
vendored
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -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)
|
||||
@@ -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:
|
||||

|
||||
|
||||
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:<ba-add>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
|
||||
```
|
||||
@@ -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
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 331 KiB |
@@ -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)
|
||||
@@ -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
|
||||
@@ -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 <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#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);
|
||||
}
|
||||
@@ -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
|
||||
@@ -1,111 +0,0 @@
|
||||
#include "gps.h"
|
||||
#include "driver/uart.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_http_client.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#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);
|
||||
}
|
||||
}
|
||||
@@ -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);
|
||||
@@ -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
|
||||
@@ -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,
|
||||
|
@@ -1,2 +0,0 @@
|
||||
CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP=y
|
||||
CONFIG_OPENTHREAD_HW_RESET_RCP_PIN=6
|
||||
@@ -1 +0,0 @@
|
||||
CONFIG_OPENTHREAD_BR_LIB_CHECK=y
|
||||
@@ -1,3 +0,0 @@
|
||||
CONFIG_OPENTHREAD_RADIO_SPINEL_SPI=y
|
||||
CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP=y
|
||||
CONFIG_OPENTHREAD_HW_RESET_RCP_PIN=7
|
||||
@@ -1,2 +0,0 @@
|
||||
CONFIG_EXTERNAL_COEX_ENABLE=y
|
||||
CONFIG_ESP_COEX_SW_COEXIST_ENABLE=n
|
||||
@@ -1,2 +0,0 @@
|
||||
CONFIG_OPENTHREAD_RADIO_NATIVE=y
|
||||
CONFIG_ESP_COEX_SW_COEXIST_ENABLE=y
|
||||
@@ -1 +0,0 @@
|
||||
CONFIG_OPENTHREAD_RADIO_TREL=y
|
||||
@@ -1,2 +0,0 @@
|
||||
CONFIG_OPENTHREAD_RADIO_TREL=y
|
||||
CONFIG_EXTERNAL_COEX_ENABLE=y
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
eec7bc1d5e507ccf5fcbb1c769971425 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin
|
||||
Binary file not shown.
@@ -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
|
||||
@@ -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=
|
||||
|
||||
@@ -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 )
|
||||
|
||||
|
||||
@@ -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 "")
|
||||
@@ -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")
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -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)
|
||||
@@ -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
|
||||
Binary file not shown.
@@ -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;
|
||||
}
|
||||
Binary file not shown.
@@ -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
|
||||
...
|
||||
@@ -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
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
@@ -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()
|
||||
@@ -1 +0,0 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
@@ -1 +0,0 @@
|
||||
ref: refs/heads/main
|
||||
@@ -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 <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||
# http://academic.cleardefinition.com
|
||||
# Iowa State University HCI Graduate Program/VRAC
|
||||
#
|
||||
# Copyright Iowa State University 2009-2010.
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
set(HEAD_HASH)
|
||||
|
||||
file(READ "C:/Users/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()
|
||||
@@ -1 +0,0 @@
|
||||
c9e7aad7c4921625a5cea185844487fae07a37f6
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -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%
|
||||
@@ -1,2 +0,0 @@
|
||||
--flash_mode dio --flash_freq 48m --flash_size 2MB
|
||||
0x10000 open-thread-rcp.bin
|
||||
@@ -1,2 +0,0 @@
|
||||
--flash_mode dio --flash_freq 48m --flash_size 2MB
|
||||
0x0 bootloader/bootloader.bin
|
||||
@@ -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=
|
||||
@@ -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=
|
||||
|
||||
@@ -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=
|
||||
@@ -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;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'
|
||||
@@ -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()
|
||||
@@ -1 +0,0 @@
|
||||
6b952e4a780729e53b0f9d2715443948 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin
|
||||
Binary file not shown.
@@ -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
|
||||
@@ -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
|
||||
|
||||
@@ -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 )
|
||||
|
||||
|
||||
@@ -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 "")
|
||||
@@ -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")
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -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)
|
||||
@@ -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
|
||||
Binary file not shown.
@@ -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;
|
||||
}
|
||||
Binary file not shown.
@@ -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: []
|
||||
|
||||
|
||||
...
|
||||
@@ -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
|
||||
Binary file not shown.
@@ -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()
|
||||
@@ -1 +0,0 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
@@ -1 +0,0 @@
|
||||
fcae32885b0296b32044cb99ecbdc50d98dddb83
|
||||
@@ -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 <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||
# http://academic.cleardefinition.com
|
||||
# Iowa State University HCI Graduate Program/VRAC
|
||||
#
|
||||
# Copyright Iowa State University 2009-2010.
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
set(HEAD_HASH)
|
||||
|
||||
file(READ "C:/Users/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()
|
||||
@@ -1 +0,0 @@
|
||||
fcae32885b0296b32044cb99ecbdc50d98dddb83
|
||||
@@ -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:
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user