ESP-IDF Robot

This commit is contained in:
2025-04-20 23:12:16 -04:00
parent a71e38d2b3
commit 6ef196edff
1388 changed files with 181562 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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"]

View File

@@ -0,0 +1,21 @@
{
"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"]
}

View File

@@ -0,0 +1,23 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPath}/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc",
"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
ESP-IDF_Robot/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "gdbtarget",
"request": "attach",
"name": "Eclipse CDT GDB Adapter"
},
{
"type": "espidf",
"name": "Launch",
"request": "launch"
}
]
}

10
ESP-IDF_Robot/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPath": "/home/alex/esp/v5.3.2/esp-idf",
"idf.openOcdConfigs": [
"board/esp32c3-builtin.cfg"
],
"idf.toolsPath": "/home/alex/.espressif",
"idf.port": "/dev/ttyACM0",
"idf.flashType": "UART"
}

View File

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

198
ESP-IDF_Robot/README.md Normal file
View File

@@ -0,0 +1,198 @@
# RC CAR powered by ESP32-C3 Breadboard Adapter (controlled via ESP-NOW)
<img alt="ESP32=C3 RC Car" src="https://github.com/alexandrebobkov/ESP-Nodes/blob/main/ESP-IDF_Robot/assets/chassi-002.jpg" width="80%"/>
### Designated Pins & GPIOs
__The table below lists GPIOs/Pins programmed to delivery specific operating functions.__
| GPIO | Pin | Assigned Functionality | Notes |
| --- | --- | --- | --- |
| 0 | 16 | Joystick x-axis | ADC1_CH0 |
| 1 | 15 | Joysticj y-axis | ADC1_CH1 |
| 8 | 5 | Joystick push button | |
| 6 | 4 | GPIO controlling clockwise rotation PWM of left motors | LEDC_CHANNEL_1 |
| 5 | 3 | GPIO controlling clockwise rotation PWM of right motors | LEDC_CHANNEL_0 |
| 4 | 2 | GPIO controlling __counter__ clockwise rotation PWM of left motors | LEDC_CHANNEL_2 |
| 7 | 6 | GPIO controlling __counter__ clockwise rotation PWM of right motors | LEDC_CHANNEL_3 |
### Schematic
<img alt="ESP32=C3 RC Car Schematic" src="https://github.com/alexandrebobkov/ESP-Nodes/blob/main/ESP-IDF_Robot/assets/schematic-002.png" width="80%"/>
## How Does It Work?
### Hardware
### Model Car Firmware
#### Controlling DC Motors
The Model Car uses four DC motors attached to mecanum wheels. The rotation magntutude of each DC motors is controlled by PWM. Each of corresponding PWM value is stored in a struct for later processing. The PWM value can take within a range from 0 to 8091.
DC motors PWM values are organized in a struct as follows:
```C
struct motors_rpm {
int motor1_rpm_pcm;
int motor2_rpm_pcm;
int motor3_rpm_pcm;
int motor4_rpm_pcm;
};
```
#### Calculating PWM Values
The DC motors require digital PWM signals which, in turn, depend on analog signals supplied by the joystick stick. Consequently, analog values need to be interpreted into digital PWM signals. ESP32-C3 is capable of sampling voltage (analog signal) for the purpose of forming PWM signal.
As joystick x- and y- coordinates change, so do voltages on corresponding joystick analog outputs. Based on the hardware implementation, the voltage on x- and y- analog outputs can change witin a range from 0V to 3.3V . When ESP32-C3 takes sample of voltages on these outputs, ESP32-C ADC produces values witin a range from 0 to 2048. When joystick is in neutral position, the x- and y- values are (1024, 1024).
Once analog signals are measured, their magnitudes are converted into PWM values; in addition, PWM values __cannot be nagative__. When joystick is in neutral position, the PWM values for all four motors is 0. However, when joystick is moved Front, Back, Left or Right, the PWM values for corresponding motor(s) is(are) updated, and can take value up to 8091.
### Receiver & Controller (ESP-NOW) Firmware
ESP-NOW is used to communicate data between Controller and Receiver.
#### RC Controller
RC Controller uses the two ADC on ESP32-C3 to sample voltage levels on joystick x- and y- axis potentionometers. Then, these values are stored in a struct.
Sensors values are organized in a struct as follows:
``` C
// Struct holding sensors values
typedef struct {
uint16_t crc; // CRC16 value of ESPNOW data
uint8_t x_axis; // Joystick x-position
uint8_t y_axis; // Joystick y-position
bool nav_bttn; // Joystick push button
} __attribute__((packed)) sensors_data_t;
```
The function _sendData()_ is a core function that sends data to the received using ESP-NOW.
```C
// Function to send data to the receiver
void sendData (void) {
sensors_data_t buffer; // Declare data struct
buffer.crc = 0;
buffer.x_axis = 240;
buffer.y_axis = 256;
buffer.nav_bttn = 0;
buffer.motor1_rpm_pwm = 10;
buffer.motor2_rpm_pwm = 0;
buffer.motor3_rpm_pwm = 0;
buffer.motor4_rpm_pwm = 0;
// Display brief summary of data being sent.
ESP_LOGI(TAG, "Joystick (x,y) position ( 0x%04X, 0x%04X )", (uint8_t)buffer.x_axis, (uint8_t)buffer.y_axis);
ESP_LOGI(TAG, "pwm 1, pwm 2 [ 0x%04X, 0x%04X ]", (uint8_t)buffer.pwm, (uint8_t)buffer.pwm);
ESP_LOGI(TAG, "pwm 3, pwm 4 [ 0x%04X, 0x%04X ]", (uint8_t)buffer.pwm, (uint8_t)buffer.pwm);
// Call ESP-NOW function to send data (MAC address of receiver, pointer to the memory holding data & data length)
uint8_t result = esp_now_send(receiver_mac, &buffer, sizeof(buffer));
// If status is NOT OK, display error message and error code (in hexadecimal).
if (result != 0) {
ESP_LOGE("ESP-NOW", "Error sending data! Error code: 0x%04X", result);
deletePeer();
}
else
ESP_LOGW("ESP-NOW", "Data was sent.");
}
```
Since ESP-NOW uses wireless module, Wi-Fi needs to be initialized before configuring ESP-NOW.
```C
/* WiFi is required to run ESPNOW */
static void wifi_init(void)
{
ESP_ERROR_CHECK(esp_netif_init());
ESP_ERROR_CHECK(esp_event_loop_create_default());
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
ESP_ERROR_CHECK( esp_wifi_init(&cfg) );
ESP_ERROR_CHECK( esp_wifi_set_storage(WIFI_STORAGE_RAM) ); // Keep configurations in RAM
ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_STA)); // Do not change WiFi device mode
ESP_ERROR_CHECK( esp_wifi_start());
ESP_ERROR_CHECK( esp_wifi_set_channel(CONFIG_ESPNOW_CHANNEL, WIFI_SECOND_CHAN_NONE)); // Both sender & receiver must be on the same channel
}
```
The main function contains lines of code that initialize wireless, ESP-NOW, specify configuration variables, and start recurring task.
```C
#include "esp_wifi.h"
void app_main(void)
{
// Initialize NVS to store Wi-Fi configurations
esp_err_t ret = nvs_flash_init();
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
ESP_ERROR_CHECK( nvs_flash_erase() );
ret = nvs_flash_init();
}
ESP_ERROR_CHECK( ret );
// ESP-NOW
wifi_init(); // Initialize Wi-Fi
esp_now_init(); // Call ESP-NOW initialization function
esp_now_register_recv_cb(onDataReceived); // Define call back for the event when data is being received
esp_now_register_send_cb(onDataSent); // Define call back for the event when data is sent received
// Set ESP-NOW receiver peer configuration values
memcpy (peerInfo.peer_addr, receiver_mac, 6); // Copy receiver MAC address
peerInfo.channel = 1; // Define communication channel
peerInfo.encrypt = false; // Keep data unencrypted
esp_now_add_peer(&peerInfo); // Add peer to
xTaskCreate (rc_send_data_task, "RC", 2048, NULL, 15, NULL);
}
```
The _onDataReceived()_ and _onDataSent()_ are two call-bacl functions that get evoked on each corresponding event.
```C
// Call-back for the event when data is being received
void onDataReceived (uint8_t *mac_addr, uint8_t *data, uint8_t data_len) {
buf = (sensors_data_t*)data; // Allocate memory for buffer to store data being received
ESP_LOGW(TAG, "Data was received");
ESP_LOGI(TAG, "x-axis: 0x%04x", buf->x_axis);
ESP_LOGI(TAG, "x-axis: 0x%04x", buf->y_axis);
ESP_LOGI(TAG, "PWM 1: 0x%04x", buf->motor1_rpm_pwm);
}
// Call-back for the event when data is being sent
void onDataSent (uint8_t *mac_addr, esp_now_send_status_t status) {
ESP_LOGW(TAG, "Packet send status: 0x%04X", status);
}
```
The _rc_send_data_task()_ function runs every second to send data over ESP-NOW.
```C
// Continous, periodic task that sends data.
static void rc_send_data_task (void *arg) {
while (true) {
if (esp_now_is_peer_exist(receiver_mac))
sendData();
vTaskDelay (1000 / portTICK_PERIOD_MS);
}
}
```
### Variables
| Variable | Value | Description |
| --- | --- | --- |
| crc | | |
| x_axis | | |
| y_axis | | |
| nav_btn | | |
| motor1_rpm_pwm | | |
| motor2_rpm_pwm | | |
| motor3_rpm_pwm | | |
| motor4_rpm_pwm | | |
| MTR_FREQUENCY | 5000 | Default PWM frequency, Hz. |

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 KiB

View File

@@ -0,0 +1 @@
78511d1332602c2bee5b777c3eef6d9d /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/ESP-IDF_Robot.bin

Binary file not shown.

View File

@@ -0,0 +1,998 @@
# ninja log v6
32829 32922 1740892731008259324 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj 49ac04aad5131aa7
3548 3582 1740892701727070950 esp-idf/http_parser/libhttp_parser.a ee4107ef0d4a587d
32729 32829 1740892730908258680 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj 6a4335d0fa8e40ad
71 148 1740892833110918302 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.elf c338ba7c06f0c1b4
61787 62090 1740892759966445901 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj badea47af95f5fff
32760 32814 1740892730939258880 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj 95becdabeeb5b9ff
28736 28916 1740892726915232975 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b4128a6cedd25db9
32609 32676 1740892730788257908 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj baeb5d166d5c4233
53097 53323 1740892751276389883 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj d702620436d2e590
32566 32624 1740892730745257631 esp-idf/freertos/libfreertos.a a533baa3693292ff
32457 32609 1740892730636256929 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj a450df2e669f84f1
2603 2635 1740892700782064875 esp-idf/esp_adc/libesp_adc.a 3465390ba727e50d
33869 34020 1740892732048266020 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj f8663ef9f023a5f2
58767 59674 1740892756946426431 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj c8c2b40d90cb3ffe
2520 3281 1740892700699064342 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj cb3264ccbca2c0e
32369 32584 1740892730548256363 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj ecfda6f2c5e71f22
33779 34312 1740892731958265441 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj b1d08f2f440c9e80
51421 51449 1740892749621379217 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-update fc97491645e34274
34591 34734 1740892732770270669 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj 1f9b886be6642a8f
32154 32351 1740892730333254978 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj 8aed27a894320cdc
1106 1338 1740892699285055253 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj bf251ffd9eafe144
31283 32154 1740892729462249371 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 29976342bef84a46
19973 22917 1740892718152176581 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b71ff5169e3423c9
31503 31944 1740892729682250787 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj c7254619a436b3b1
31397 31902 1740892729576250105 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_ds.c.obj 9eb7aa7d1c54984
31424 31846 1740892729603250279 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj bb5ab669d17f99a
31560 31760 1740892729740251161 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 67adba129857d273
52730 53035 1740892750909387518 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj 3388deb9913223b2
34572 34779 1740892732751270547 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 4fe291006a0b540e
41326 41508 1740892739505314042 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj d407aec6ddde99af
39506 40089 1740892737685302320 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj a1f390115a18fefc
33984 34044 1740892732163266761 esp-idf/soc/libsoc.a 2294f2f9f889f923
31352 31560 1740892729531249815 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_hmac.c.obj 58d117b120db68e0
31315 31502 1740892729494249577 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj 93701764682cc86f
30884 31315 1740892729063246802 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj 3dc0f8c12d1a9197
35169 35268 1740892733348274391 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 9508952c08006574
30804 31283 1740892728983246288 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 9f460a0b3a7f350f
30633 31110 1740892728812245186 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj c8f0d2f343b6c72c
45693 46165 1740892743872342174 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj efdc97668b0d5b8e
4307 4681 1740892702486075829 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 843fc28124c02b9e
61079 61564 1740892759258441337 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 91de55abf47cc0b6
32893 33084 1740892731072259736 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj ae25a4fa58253f82
30191 30774 1740892728370242341 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 1f471c8388d07b9
30537 30633 1740892728716244569 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj db1c154c2cc99375
53180 53196 1740892751359390418 esp-idf/esp_pm/libesp_pm.a 31fbb65c621f5b8a
49491 49583 1740892747670366645 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 580141ea9820bfb4
30228 30625 1740892728407242579 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 9989501be2a9a601
52476 52670 1740892750655385881 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 2ed8dda8c9525704
26130 26923 1740892724309216202 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 12522336d998892b
30434 30537 1740892728613243906 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj 946957a589cfd173
30216 30317 1740892728396242508 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 3e472b1e13c1c0ce
29856 30228 1740892728035240185 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b2150c171f0c09
41508 42443 1740892739687315215 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 8157ab4995542600
29925 30191 1740892728104240629 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 8349eb3c68e9beb5
17171 18288 1740892715350158555 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj f4f0a799155ae2fb
18291 18353 1740892716470165760 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj ff45225cffd3d093
12456 12597 1740892710635128227 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 4f37e6fbd1a5302d
37575 37674 1740892735754289884 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj a70c6179d91708dc
62 93 1740892698269048723 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/ld/sections.ld.in 52eefdc418759598
12940 13225 1740892711119131340 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 98a66a8b3a04049e
152 164 1740892833201918891 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-done f249f5b287000dc4
8308 8574 1740892706487101552 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 5e84990b4ada2165
11512 11642 1740892709691122156 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 1441ee59f0069368
17229 17926 1740892715408158928 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj aa96c9e1ef8dc026
38458 39012 1740892736637295571 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 66592464a3d8137c
46268 46336 1740892744447345878 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 8c5de3d03f23bd0f
9525 9639 1740892707704109378 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 2778474636fd9be5
5543 6299 1740892703722083775 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj f6deede14344f369
10726 10959 1740892708905117101 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 1a7d1b6a7359c768
4681 4897 1740892702860078233 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b01adc6de8627d43
41897 41991 1740892740076317720 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 2fafc8e6570eafaf
36491 36824 1740892734670282903 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj db87d3eca77b44a9
11138 11443 1740892709317119750 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 209bd4e5ec9a5c9a
46002 46966 1740892744181344165 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b15461e1807249a2
65196 65215 1740892763375467883 esp-idf/main/libmain.a 70137ac8790bd643
40586 40949 1740892738765309276 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 21cc2b509c5db6a7
63505 63788 1740892761684456979 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 72d4e355b3341f7b
41221 41660 1740892739400313366 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 5afe7f61793dcd5a
11122 11418 1740892709301119648 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 579f3f7344d62c12
94 609 1740892698273048748 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b7fccf45629b4910
62085 62578 1740892760264447823 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj c33e95c84bc2e24a
27994 28242 1740892726173228199 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 84ea2434db6094e7
30834 32046 1740892729013246480 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 45ca615cf46351ce
37569 37726 1740892735748289845 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj 8e661215ff4eb09c
14517 14820 1740892712696141483 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj 8d80e93d62944f9b
28065 28261 1740892726244228656 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj a989b956582671a8
30252 30372 1740892728431242734 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 7e559c90a178c8c8
11018 11409 1740892709197118979 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 2b14c318decbd1a
29296 29925 1740892727475236580 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 49fb38b2cab5ba09
35607 35712 1740892733786277211 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj e0c3713487f31437
14474 14612 1740892712653141206 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj dd0c172aee07c21b
14648 14814 1740892712827142325 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 49c7c3565eebacf6
10090 10726 1740892708269113011 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 448d0f29999e9036
27045 27251 1740892725224222091 esp-idf/nvs_flash/libnvs_flash.a 95b0d42ebc45a9e0
18393 18797 1740892716572166416 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj bb5da4c807dcfa5e
19844 21273 1740892718023175751 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj a004e79cc8f9c6e
9760 10120 1740892707939110889 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 3029d114ca809e4f
15096 15276 1740892713275145207 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj 743025378b43a5ca
864 1088 1740892699043053697 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj ccd9eb5912b5f516
8922 9425 1740892707101105500 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 437155990e2a8341
8288 9204 1740892706467101424 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj ff875af49d4e4402
43612 44062 1740892741791328768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj e40c49a7a9f7abfa
37741 37955 1740892735920290953 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj a12868836cab00c1
8515 8962 1740892706694102883 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj 5be3710401936a38
13607 13767 1740892711786135629 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj f7273f1985a2898c
45872 46268 1740892744051343327 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj a4d3f2cc45c6e6f1
46460 47440 1740892744639347115 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 3188e8c345942ba7
8035 8425 1740892706214099797 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 58642574d68937f3
2305 3222 1740892700484062960 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj bb7fb978bcfb03de
18371 18392 1740892716550166274 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 1cdf3291b2c92f4f
152 164 1740892833201918891 bootloader-prefix/src/bootloader-stamp/bootloader-done f249f5b287000dc4
7898 8307 1740892706077098916 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 7358cf3755ad76b
2475 3529 1740892700654064052 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj c5f52709a059a9a
40018 40327 1740892738197305618 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj e44d3d94db7f9a86
11444 11805 1740892709623121718 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj f9bd8a246720b63f
8574 9179 1740892706753103263 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 8cd7ccb2ac28f769
39938 40018 1740892738117305103 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj f9f56cc8875dbacd
9631 11122 1740892707810110059 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 3be8c902362c84c1
19031 19070 1740892717210170521 esp-idf/esp_driver_rmt/libesp_driver_rmt.a c4ed1f40d8e0d024
35171 35489 1740892733350274404 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 954f22056ea06549
7195 7641 1740892705374094396 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj ad78da1805cafdf2
34957 35171 1740892733136273026 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b2aa6e883b1136a5
6358 7409 1740892704537089015 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 6cbdb1899f90c41d
15276 16199 1740892713455146365 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj d70f427cd89008b4
6875 7219 1740892705054092339 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 1f76f54e7f5b7bdf
39016 39350 1740892737195299164 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj 94c93934abd58d86
32949 33105 1740892731128260097 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj a96a667afeb8b167
19341 19667 1740892717520172515 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj c6780e5d5cb245f7
12756 13084 1740892710935130156 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 9f906f4fca9e0bba
6972 7176 1740892705151092962 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj f7423bc048f09e09
7219 7745 1740892705398094550 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 41fb0f4da3e6c69c
63155 63504 1740892761334454722 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj d9809f42e721bf85
44969 45053 1740892743148337510 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj d245ffe8e9ca30ae
31110 31424 1740892729289248257 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 8f5cf272d9febb43
14123 14273 1740892712302138948 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 7b0e6bac296281f2
52757 53334 1740892750936387692 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 7f1f462ebc6bad89
40300 40586 1740892738480307441 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj 57142fc21cd5e52
4197 4984 1740892702376075122 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 94613f89a3a89540
39363 39506 1740892737542301399 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 752693086a5aad11
35163 35725 1740892733342274352 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj d4686ebe6592063c
5861 6206 1740892704040085819 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 17f2a9b2cf2270e3
27416 27449 1740892725595224479 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 13a491ca8a04afdc
5446 6172 1740892703625083151 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 443809102f97aa
12468 12878 1740892710647128304 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 1661d54d17b31d47
7420 7824 1740892705599095843 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 6e849277b873bd74
37465 37891 1740892735644289176 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj d702c3d91c7e3cb1
44062 44253 1740892742241331667 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 2a16fd6d5181a20a
5694 6089 1740892703873084746 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj ffdf687205db8c06
31760 32369 1740892729939252442 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj 85f954b3fa080c39
63788 64179 1740892761967458804 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 31e2c676a4e91f27
60088 60376 1740892758267434947 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 8db834f28fd4980a
47719 48005 1740892745898355227 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj c5098b1abafbacd4
42065 42239 1740892740244318803 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 944a6b5305fa944c
5383 5592 1740892703562082746 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj c314535c75f1050a
51135 51373 1740892749314377239 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj a8ef54b80a638443
54381 54858 1740892752560398159 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj e3fef061725d5d28
54220 54381 1740892752399397121 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj c41946846e8bbb33
30317 30884 1740892728496243152 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj a1ab0cbc04bdc8f2
58353 58555 1740892756532423762 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 60d0e5930ae2791e
50206 50725 1740892748385371252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj 18766b8ced2978a2
59236 59574 1740892757415429454 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj d960bc274ac4e942
52475 52757 1740892750654385874 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj d1a2091eea0eaeb5
6281 6516 1740892839555960000 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/.bin_timestamp 1d5386dfcf8a6b14
398 664 1740892698577050702 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj c229c7ccbd79b057
2537 2826 1740892700716064451 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 6c4d14465401585e
44253 44406 1740892742432332897 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj c526f1bc2d21ca07
36500 36914 1740892734679282961 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj 53c13b33c7cf9e5f
63182 64875 1740892761361454896 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj ff422d265e9e069d
29966 30827 1740892728145240893 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 87e5f58c1f927c8f
45025 45301 1740892743204337870 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e2e88ebd5209c2b8
50349 50948 1740892748528372174 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 27a7f82a2ccc9317
47440 47502 1740892745619353429 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj d52a40bf165d2d8f
93 795 1740892698272048742 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 3972115c58b4b13b
40949 41793 1740892739128311614 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj db967818cf15e95
47796 47923 1740892745975355723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 448f409f97e3f30b
17926 18290 1740892716105163412 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj c0fb7fc04c273dff
45203 46815 1740892743382339017 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj d1861e4a574d4e5d
57001 57339 1740892755180415046 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 4b0e5acbcea3866e
52277 52469 1740892750647385829 x509_crt_bundle.S add1d96963b0a9b1
53277 53493 1740892751456391043 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj 9fa6a517fe7ad1f3
3553 4625 1740892701732070982 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj e643a0c06da8629f
46730 46975 1740892744909348855 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 603b7e07ba630ba6
12998 13089 1740892711177131713 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 43d8dc79d120ebf7
47923 48479 1740892746102356542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj cfe1c1d5b8bef4f4
15296 15733 1740892713475146493 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj ea39bb90bb0f8c4f
14564 14764 1740892712744141791 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 3699fb49c2c07963
15565 15832 1740892713744148224 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b26f221e78561ee6
57252 57439 1740892755431416665 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 7f6dc2d917ae744e
51895 52277 1740892750359383973 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/x509_crt_bundle 969692aa678d008e
2021 2404 1740892700200061134 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj fa0d217964c80771
52277 52469 1740892750647385829 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/x509_crt_bundle.S add1d96963b0a9b1
56195 56244 1740892754374409851 esp-idf/protobuf-c/libprotobuf-c.a 2376204679f90ee3
31846 32566 1740892730025252995 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj f09c27022e991022
18906 19272 1740892717085169716 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj 901dbcd9cf3f4dd6
53035 53097 1740892751214389484 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj 13e5a9e8781b82de
27357 27515 1740892725536224099 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj f2b1f1208d320b69
44064 45753 1740892742243331680 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 5dfba11f87fead41
1877 2004 1740892700056060209 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj 3302aaa80a5dd664
51421 51449 1740892749621379217 bootloader-prefix/src/bootloader-stamp/bootloader-update fc97491645e34274
71 148 1740892833110918302 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.bin c338ba7c06f0c1b4
13767 13998 1740892711946136659 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj ff2e0d2a9b784acf
5223 5511 1740892703403081724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 47de4537375ce47e
6911 7326 1740892705090092570 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj dafaf996791c358e
15593 15711 1740892713772148404 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj 3d710f8c3a38f323
59465 59739 1740892757644430931 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj 2c6929f1dcd1955a
12255 13170 1740892710434126934 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 264c8820e993b4a4
49441 49527 1740892747620366323 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj f119ca8827596ee8
19285 19341 1740892717464172155 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj c6bbdb20cbca443c
41819 43594 1740892739998317218 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj cf590523311302b3
1890 2107 1740892700069060292 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj 5977dbd45c078b79
2375 2528 1740892700554063409 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj c1feabb98f9077ce
58375 58766 1740892756554423904 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj e17116d708d68888
10990 11512 1740892709169118799 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj cc664dfe62ade8fc
14100 14346 1740892712279138800 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj c5833853c7556fad
3490 3895 1740892701669070577 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 291ee7ca1a639937
13085 13405 1740892711264132272 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj df9ba81a10577a6
1738 2090 1740892699917059315 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 96bc786b6b515da3
30627 30804 1740892728806245148 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj f78ee7e690c97cb6
35650 35672 1740892733829277488 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj c3c0555884c1429a
44287 44385 1740892742466333116 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 9daae54f5db7aa0c
23900 24132 1740892722079201850 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 4aff3303e49aa760
7693 8515 1740892705872097598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj 7e53da9e81e31803
54518 55561 1740892752697399042 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj aae25d23aff0ac84
33019 33113 1740892731198260547 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj 6c965979db4d5a7e
69 81 1740892698256048639 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/project_elf_src_esp32c3.c 188673f5f8655ee0
3727 4229 1740892701906072101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj 7bd12f761740ab30
64147 64195 1740892762326461119 esp-idf/esp_lcd/libesp_lcd.a a4e1a9a80b68c94e
8438 8983 1740892706617102388 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj fdd428da3e0a9b2
8962 9731 1740892707141105757 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj fdcf867275300976
47188 47518 1740892745367351806 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 1f5662caf8b53f66
10105 11138 1740892708284113107 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 683b4464cd09f3dc
152 164 1740892833201918891 CMakeFiles/bootloader-complete f249f5b287000dc4
23625 27045 1740892721804200080 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj 90371b62f750b1fd
52669 54328 1740892750848387125 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 49ca14d83ab4ee45
13225 13607 1740892711404133172 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj c68022a77ce02708
686 1009 1740892698865052553 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 71e30e1f42cf2992
28262 28500 1740892726441229924 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 228f5922eb1a28
13090 13620 1740892711269132304 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj e421cb08b3b995ca
29484 29546 1740892727663237790 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 98521191b15ad8dc
41131 41261 1740892739310312787 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 73224d8375f37667
11945 12255 1740892710124124940 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 743c0c8af3396ea1
57413 58111 1740892755592417702 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 34d4c872eefb2a55
18042 18349 1740892716221164158 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj e0f7fdbcc71d76e1
47518 47719 1740892745697353932 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj edcb28c22c51beba
35853 36117 1740892734032278795 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 36366f33dc36d675
61984 62085 1740892760163447171 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj d5955c598744f893
3941 4757 1740892702120073476 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj c686d69a9bf37bf8
64318 64361 1740892762497462221 esp-idf/espressif__led_strip/libespressif__led_strip.a 760b9590bde4e6da
32584 32728 1740892730763257747 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 6983e9e444881fb5
52472 52669 1740892750651385855 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 5e45a2ff4506a56c
32046 32528 1740892730225254283 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj b3f9734401fed2a9
4677 4990 1740892702856078208 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b6d031642c1d9120
54615 54786 1740892752794399667 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 78207e6e5fc4d1be
3198 3411 1740892701377068700 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj e929d0dbc5b2e978
55092 55260 1740892753271402741 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj ca2932f21d54458d
4625 5058 1740892702804077873 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj a76f35c956ed49c8
6705 7195 1740892704884091245 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 2359c531a80a2903
14820 15301 1740892712999143431 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj ac242c0b0d3ad8ba
12738 12940 1740892710917130041 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 6d705e5dad5d5c39
3323 3490 1740892701502069504 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj a9ef29d0170bcca0
29546 29681 1740892727725238189 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj 5f9259575c131d95
13049 13245 1740892711228132041 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 39acac2d8d6d4114
30372 30434 1740892728551243507 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj fc2cf774679f03ce
13170 13958 1740892711349132819 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj a0eb27e96c99fd6f
30774 31351 1740892728953246094 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b78ac271c745e6c3
39436 39799 1740892737615301870 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj d765cbafbf1c4566
15331 15593 1740892713510146719 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 602326c1a4f4574e
36130 36378 1740892734309280579 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 587a90217a971278
33920 34041 1740892732099266348 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj 3e6b2e5303bdff5d
23622 23686 1740892721801200061 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj 2d388f62c963c811
51311 51438 1740892749490378373 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 38aca90c8458e3e1
58872 59339 1740892757051427108 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 13b49267fe7751d8
64116 64144 1740892762295460919 esp-idf/cmock/libcmock.a 33ae26ea5c2f3412
13958 14101 1740892712137137887 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj a42f249fd8d2298f
13923 14209 1740892712102137662 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj ad2140db92a0864e
4377 4677 1740892702556076279 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj 56048fbe903bf280
49814 49942 1740892747993368726 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/esp_mem.c.obj 7563d8f7364eeec8
56675 57767 1740892754854412945 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 64aca1316b50b451
60446 60495 1740892758625437255 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj 737dfe676757ed0d
19667 22546 1740892717846174612 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 72159d3972dd21c1
14818 15153 1740892712997143419 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj ba3db564108cca4f
48186 48540 1740892746365358236 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b4081658a2d69c35
14764 14934 1740892712943143071 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj a7467e047a8a022c
55620 55711 1740892753799406145 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj c4dd2809ecf6f90c
49026 51185 1740892747205363648 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj c105ea3262bac38a
55875 55948 1740892754054407788 esp-idf/console/libconsole.a 34a7ef3f397b0c2b
11805 12456 1740892709984124040 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 8665d6a077010dd8
11642 12434 1740892709821122992 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj f08fdba6d5633ffd
15948 16858 1740892714127150687 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 88bf92dad267fcc3
37116 37569 1740892735295286928 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj e50496555fa0dd10
27952 28736 1740892726131227929 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj a12bd0b78997f3d9
55948 56277 1740892754127408259 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b9f698d8fe4ade38
28460 28782 1740892726639231199 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 34eb25e11e0cb6ae
8983 9209 1740892707162105893 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 2f61d3773d073693
60816 60958 1740892758995439641 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 3cfaa590cbfcf91e
57496 57680 1740892755675418237 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj ce3b8a7da83cc827
26902 27707 1740892725081221171 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 6a51c3da6caa256c
34252 34334 1740892732431268486 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b6b9a4ffd89408fc
26714 27376 1740892724893219960 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 3883a517798e751d
60288 60811 1740892758467436237 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 1a0dc221c0d76dbe
10588 10990 1740892708767116214 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj f5d22c388ea79856
45420 45692 1740892743599340415 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj e36955c9c67601fc
45885 46138 1740892744064343411 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 9d8944a36468878f
62778 62927 1740892760957452291 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 6758eed5e708fe64
3281 3341 1740892701460069233 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj 5d393d4518b11b25
54328 54383 1740892752507397817 esp-idf/esp_driver_gpio/libesp_driver_gpio.a d716d0094f33e011
34217 34591 1740892732396268261 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 6af6072b2728147a
148 152 1740892833187918800 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-install fa89eda5d1a165ca
18353 18574 1740892716532166159 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj abb33de5b7b6099d
49583 49692 1740892747762367238 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj 96ad054b136f0259
25974 26130 1740892724153215198 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj f9543b34f08762e7
3931 4197 1740892702110073412 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj 16b7b0c3155ab998
10573 11018 1740892708752116117 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj d32669d9f8133166
35489 35607 1740892733668276451 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj fc1bf10757701064
46583 46730 1740892744762347908 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj 4bed46055a186cf
24212 24838 1740892722391203858 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj 99ab55100002c248
46815 47360 1740892744994349403 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 25f414e88d73d2af
58111 58375 1740892756290422202 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj c62be522ff02c3
70 163 1740892833109918295 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj f23dcf775ad19ffb
1702 1738 1740892699881059084 esp-idf/esp_http_client/libesp_http_client.a d72479faa0007a67
3529 3548 1740892701708070828 esp-idf/esp-tls/libesp-tls.a 8077ba24897183a1
9425 9760 1740892707604108735 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj d627628f2c11b43b
95 686 1740892698274048755 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b28c84b9967d11d6
14243 14390 1740892712422139720 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj c5f59f139f83c392
25695 25812 1740892723874213402 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj e0c418b06836229e
35767 35858 1740892733946278241 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj e0db42d2b1c9c165
22917 26536 1740892721096195524 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 396cb4da0858eb44
51449 51480 1740892749656379443 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 91ffd04543c26b98
51185 51256 1740892749364377561 esp-idf/mbedtls/mbedtls/library/libmbedx509.a c4965136a638e8eb
10151 10469 1740892708330113403 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 667de4a008287387
35187 35947 1740892733366274507 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj 99715ab54c76c81d
34589 34843 1740892732768270656 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj ddc78c70d6ea7cc3
40746 40818 1740892738925310307 esp-idf/bootloader_support/libbootloader_support.a a19d6f24b8fb2054
33048 33631 1740892731227260734 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj df4cad725d936c6c
63436 63763 1740892761615456534 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 7d146bb384c37680
36294 36488 1740892734473281635 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 569dd4e3b0cda68
32922 33035 1740892731101259923 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj 9df1f830263d2be2
28242 28542 1740892726421229795 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj 486a44f1dfefbabf
25311 25695 1740892723490210931 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 9386fb49fb113ac9
29891 29939 1740892728070240410 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj bf347e2453e4d380
47744 48686 1740892745923355388 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj a39b7ac01e3f44a
41228 41894 1740892739407313411 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 9cf5eb5104634f1f
38484 39562 1740892736663295738 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b1b7745fb94812bc
10469 12209 1740892708648115448 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 756f07b71cdb1761
27348 27416 1740892725527224041 esp-idf/esp_ringbuf/libesp_ringbuf.a c47041d6b1646042
36371 36538 1740892734550282131 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 89b635793d96f124
41889 43629 1740892740068317669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj c6d0cf29bbfe3321
40468 40746 1740892738647308516 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj f47015291cf9719a
17586 18041 1740892715765161225 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 385e4d67a6012532
35834 36371 1740892734013278673 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 6e46cb3e0ff8ab43
63766 63916 1740892761945458662 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj a0665b6cbf423ad8
15832 16326 1740892714011149941 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 5dea70697e274e19
34632 35123 1740892732811270933 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj f7d77e16b29c867d
27376 27749 1740892725555224221 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 481bc3b01513fb6
46138 46459 1740892744317345041 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj a58104f99646e741
36824 37182 1740892735003285048 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 2573b581e5ddc051
35268 35624 1740892733447275028 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj 2620fc1a41406f52
16199 17727 1740892714378152302 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 497498e8869159c3
37891 38173 1740892736070291919 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 844a6e30acab80d1
36007 36248 1740892734186279787 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 967576170328c6cb
44924 45712 1740892743103337220 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 95ca45e541ab036a
37182 37333 1740892735361287353 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj 3ca31a273ea90832
56277 56525 1740892754456410379 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj 9dd0bcf2492ab166
2404 2520 1740892700583063596 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj c3e13e5c80aad34d
34734 35122 1740892732913271590 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 141f2aa1085cc84a
49023 49106 1740892747202363629 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 7f12d41a7a0cc5d2
2336 2537 1740892700515063159 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj f74a608fb5aebd23
36419 37956 1740892734598282440 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 8c1848cf7071ebf
39033 39352 1740892737212299274 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj f2b00f4499f5445f
5851 6358 1740892704030085755 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 365b1cf90116aeec
38003 38503 1740892736182292641 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 9cfd469375f54b85
34045 34106 1740892732224267153 esp-idf/heap/libheap.a 8fe5648e6386d88a
29061 29476 1740892727240235067 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj c9db6c06a49c3bdb
50683 51202 1740892748862374326 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj ae43266a70afd8f6
41996 42056 1740892740175318358 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 542d8793b711f964
54091 54293 1740892752270396290 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 337feb43f1db8042
39597 39668 1740892737776302906 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj 8e86521e6b801483
33012 33048 1740892731191260502 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj 618bf5036538a1f2
19260 19634 1740892717439171994 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj c18d10d6e5a93b4f
56480 56675 1740892754659411688 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj ea2242114c10aec0
851 1357 1740892699030053614 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 9cb1ce23d27a1a9d
58972 59408 1740892757151427752 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 20debfef71faa147
60595 60816 1740892758774438216 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj efb4c0e702124c4d
57339 57732 1740892755518417225 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 7b5cd6e94306b90
54293 54714 1740892752472397591 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj bb77d7b8861e9d11
46533 47744 1740892744712347586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 782c1a3c50a4c567
34779 35163 1740892732958271879 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj f9e5435d54e6c451
35122 35187 1740892733301274088 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj f7ddf6c521b72441
33753 33980 1740892731932265273 esp-idf/esp_hw_support/libesp_hw_support.a 9da303babfc01ca9
44754 45626 1740892742933336125 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 820b930b64eb978e
5298 5693 1740892703477082200 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj cced9f5d25e0bfea
64270 65196 1740892762449461912 esp-idf/main/CMakeFiles/__idf_main.dir/blink_example_main.c.obj 16ba06e89db85cdc
25907 26238 1740892724086214767 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 53109cccd194104e
55264 55411 1740892753443403850 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj e79a73add2cdf776
34020 34572 1740892732199266992 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj ca80b069c32b4b6
11606 11767 1740892709785122760 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 9ee8b5be4bcdb8c0
19274 19973 1740892717453172084 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 593932b7696c16c8
39799 40287 1740892737978304207 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj 46b47f9501408060
37955 38123 1740892736134292332 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj ae305b7ef7330f31
34851 34957 1740892733030272343 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 31350f2b5171c406
33084 33637 1740892731263260966 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b62a4230bc6c13e5
36914 37465 1740892735093285627 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 98f4be63eca7124a
38714 39033 1740892736893297219 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 8b16c0f4765c74f6
38123 38283 1740892736302293413 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 7c9012d706e7d6c3
41833 41854 1740892740012317308 esp-idf/esp_bootloader_format/libesp_bootloader_format.a d35f7e569d6f8744
47615 48372 1740892745794354557 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 89c86712fc60ab85
13645 13890 1740892711824135874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 27a2abaf23a427c5
53152 53180 1740892751331390238 esp-idf/mbedtls/libmbedtls.a 29a46e50386d65bf
664 1106 1740892698843052412 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 2d8af74854b43216
38171 38779 1740892736350293722 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 55cf5667ca3522b9
40327 40468 1740892738506307608 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj 9101508d7755779f
23363 25646 1740892721542198394 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 6a3038a40605d7fe
43415 43742 1740892741594327499 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 1cd9a93f6fcbac57
54045 54220 1740892752224395993 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 2382d636dc950b17
36117 36419 1740892734296280495 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj de19057549257c36
36265 36294 1740892734444281448 esp-idf/esp_rom/libesp_rom.a 2b3fe8d35f03f77d
39181 39896 1740892737360300227 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 4dd0470d79151be9
40089 40454 1740892738268306075 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 835aaa5aa211ebc
18893 19170 1740892717072169633 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj 41ffab2c290c04f3
24838 25175 1740892723017207887 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b4461fba386e2d4f
42239 42482 1740892740418319923 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 4629ceb9a5d49c70
14367 14513 1740892712546140518 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 69faaa809fb72eda
39562 39597 1740892737741302681 esp-idf/spi_flash/libspi_flash.a da40a17b6be97a66
35727 35834 1740892733906277984 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b2f098be94e66915
28916 29297 1740892727095234134 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj b59f3a9567226fc5
36538 37116 1740892734717283206 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 97f4e0f6af6ffce7
49527 49650 1740892747706366877 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 5e6a1ff2f7040504
4984 5220 1740892703163080181 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 9db9abe4752ea762
4757 5024 1740892702936078722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj a31b672abb87d4e1
37676 37730 1740892735855290535 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 97c45f26903be5e4
35712 35857 1740892733891277887 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 5d029e0e09524dd3
35857 36126 1740892734036278821 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 2a492a1b5dd149d2
64114 64131 1740892762293460906 esp-idf/app_trace/libapp_trace.a 6c53f29183054283
58555 59148 1740892756734425064 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj d2daf2f227ce9547
35947 36265 1740892734126279401 esp-idf/hal/libhal.a eea0000f2db297f6
14346 14564 1740892712525140383 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj d784b957676dbf24
37333 37575 1740892735512288326 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj 941e6cc928da89e1
55934 56181 1740892754113408169 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 3e3db57e68688136
13245 13546 1740892711424133301 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj 49789ae041ecd1e4
25959 26153 1740892724138215101 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 307fb1e0cf3e4810
55411 55771 1740892753590404798 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 30129f96df3db139
14612 15018 1740892712791142094 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj 73e88aa8de4db904
2826 3098 1740892701005066309 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 3e7d9fd8d1b75215
39352 39739 1740892737531301328 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj c79c4d086bd26b4e
57445 57496 1740892755624417909 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 2b77cbe832a5bfa4
35624 35650 1740892733803277321 esp-idf/log/liblog.a 4ad3185a52e8138
37726 38003 1740892735905290857 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj c0a9f07f4e9894d
53323 53390 1740892751502391340 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj 3a75fea2f18ac801
34233 34459 1740892732412268364 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 479f286e45ca1162
38503 39183 1740892736682295861 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 702706ba29774e22
3222 3495 1740892701401068854 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj ea4362deebf778f4
61 91 1740892698268048716 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/ld/memory.ld 7510debf444ae5a9
3072 3198 1740892701251067890 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 2a9389c03b911692
38283 38874 1740892736462294444 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj ca0c750b24920289
34312 34520 1740892732491268873 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj d3857350688e5f4d
40133 40402 1740892738312306359 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj f8c2f2b334f57d24
27749 27994 1740892725928226622 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 4c0d96aaf7aeae8e
39739 39938 1740892737918303821 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 1bea154393d93237
40262 40300 1740892738441307190 esp-idf/esp_mm/libesp_mm.a c5214a542e2823ba
9683 10105 1740892707862110394 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj c0879c31e6496cba
53412 53618 1740892751591391913 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj ecdbac3424133840
54123 54470 1740892752302396496 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b37a10d622ee921b
36746 37312 1740892734925284546 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj 99c0b4d78c187357
38173 38714 1740892736352293735 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj e61d7b48ce8020b1
43904 44064 1740892742083330649 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj d116828a942ec1f1
45301 45420 1740892743480339648 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 23d3942a9374bfff
33991 34217 1740892732170266806 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj e0a7edac665657e7
32815 32878 1740892730994259234 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj 15685d81e12a9851
35872 36128 1740892734051278917 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj d602f02492b0f762
63856 64318 1740892762035459242 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_dev.c.obj a807967c3aa1bcef
54281 54615 1740892752460397514 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 25e4305d72de1d69
52469 53152 1740892750648385836 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 25cdd366372bbdad
51393 51421 1740892749599379075 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 34d2739a1a8b8267
62578 63530 1740892760757451002 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 210e9b79b88e040f
43247 43735 1740892741426326417 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj e982c56dbb429b8b
39350 39436 1740892737529301316 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 2f5b9d9b31c4aacd
5465 5748 1740892703644083273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 9ed43a0854e64b54
28262 28618 1740892726441229924 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b633db9b8e019e17
4571 4977 1740892702750077526 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 3af82030108a35bc
23686 23733 1740892721865200473 esp-idf/esp_driver_spi/libesp_driver_spi.a 9e139a881d7c2df2
38779 38933 1740892736958297638 esp-idf/esp_system/libesp_system.a 542ba7bd497799ee
29710 29891 1740892727889239245 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 17d151dea9b313b4
50725 51023 1740892748904374597 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj 33a63275f8523075
35858 36007 1740892734037278827 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj d7ab89fad7e92b3d
33474 33725 1740892731653263477 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj e8a6ccdc08a23d50
48005 48710 1740892746184357070 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 747b9511863cadfb
34520 34687 1740892732699270212 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 9663d6ce7e64a4dd
44614 45025 1740892742793335222 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 390c8e3ca536a60b
16437 16451 1740892714616153833 esp-idf/esp_vfs_console/libesp_vfs_console.a 6cdd0cdb353a4787
6089 7420 1740892704268087285 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 18c2cd003dbfc6f5
5269 5465 1740892703448082013 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj e8284b63e3178de0
53618 54123 1740892751797393241 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj 677f3c581256e7f8
5511 5861 1740892703690083569 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 8d1e74370b60375
33895 34252 1740892732074266188 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 4d014d1e3e3ba113
45736 45885 1740892743915342451 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 2a8382994ee38102
34431 34589 1740892732610269639 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj c94180fc09bb656
12598 12997 1740892710777129140 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj 443f4c9d6fc56d99
40402 41119 1740892738581308091 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj 2175f43b32f0cfd5
33637 33779 1740892731816264526 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj a2f379712cc54b2d
43064 44924 1740892741243325238 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 601c1560c35a7b28
35551 35853 1740892733730276851 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj a7f1ce3c7a083e57
32528 32893 1740892730707257386 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/cpu_retention/port/esp32c3/sleep_cpu.c.obj 335e44f5afa96418
7326 7693 1740892705505095238 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 98377be07a0a54d8
34334 34431 1740892732513269014 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 941c536cb32414ef
34143 34399 1740892732322267785 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj 24779443cdf54288
35298 35520 1740892733478275228 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 2e4b995d9ac67cc9
34106 34233 1740892732285267546 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj 7e8c2572963815e
29717 30834 1740892727896239290 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 177b61683beeb339
58361 58860 1740892756540423813 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj ee732ac869636c3
31902 32432 1740892730081253356 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj 91a0417ab171102c
38347 38484 1740892736526294856 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 2920f824d7aede74
59674 60086 1740892757853432278 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 58a3dcffe3740db4
41282 41818 1740892739461313759 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 4a7819cca0daf3cf
34041 34142 1740892732220267128 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj ef67aefacf351d51
49119 49491 1740892747298364248 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 1ef43b94b308391a
37675 37741 1740892735854290528 esp-idf/esp_common/libesp_common.a 78e52a24fcc05624
39183 39363 1740892737362300240 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b229085d6eab1739
57121 57252 1740892755300415820 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 9280262f2ac9d5fe
33725 33919 1740892731904265093 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj 8754b2321e0ff3e0
48686 49023 1740892746865361458 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 624cdb1f6147552f
33717 33869 1740892731896265041 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 52b240892462cea7
49692 50039 1740892747871367940 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj a8eff143980b719f
32432 33752 1740892730611256768 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj 40e8cca976e0b20a
19231 19260 1740892717410171807 esp-idf/sdmmc/libsdmmc.a aae7028689392910
18949 19504 1740892717128169993 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj cc4a0b97b36ca8e7
56908 57120 1740892755087414447 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj 7f6a2737cdf714d9
40490 41068 1740892738669308658 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 62f0ec734ef1b269
33417 33474 1740892731596263110 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj be089a13fc919f7c
7176 7654 1740892705355094274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj eae2e709054f066
33035 33428 1740892731214260651 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj fb7abcad302f8a41
29797 30216 1740892727976239805 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 437b049ba788c51a
47503 50932 1740892745682353835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 9680ebd2e99b637
32327 32457 1740892730506256092 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_crypto_lock.c.obj 4900763cf06dee4f
19070 19087 1740892717249170771 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a 1054a92f2114d85d
41855 43247 1740892740034317450 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj a6dec96f2716a070
48540 49270 1740892746719360517 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 5f70b8b5a878d0a0
18108 18621 1740892716288164589 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj af15e9e8f5eedff6
51480 63856 1740892762034459236 bootloader-prefix/src/bootloader-stamp/bootloader-configure 573c2e33d7f3cfb9
60067 60104 1740892758246434812 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj 56587bc258e4d930
59574 60066 1740892757753431633 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj ce16a86c9e09b49d
57724 58830 1740892755903419707 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj afe61261fdf22099
54858 56480 1740892753037401233 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj c052a42fe3127d7c
100 518 1740892698279048787 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj e565096f4d5c4504
64875 64943 1740892763054465813 esp-idf/wifi_provisioning/libwifi_provisioning.a e402508d5c4d71c
38933 39015 1740892737112298630 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj 2544cb775f3ae299
34819 35298 1740892732998272137 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj 299f9195cdee5682
60632 60804 1740892758811438454 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj c1557ada3ed75297
9635 10126 1740892707814110085 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj c9ed945624627c1e
44583 44969 1740892742762335023 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 59340337c56b2e75
16451 16749 1740892714630153923 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 83202a3f1d2f011c
32943 33019 1740892731122260058 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj f4b2aade2f0d870a
13998 14142 1740892712178138151 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 1151af0e518d1428
39896 40657 1740892738075304832 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 81cf86d16294065c
50339 51226 1740892748518372109 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 64d3c602cee1771c
40657 40815 1740892738836309733 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 55c30baca9c598f9
49691 49991 1740892747870367933 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b4f765489eefc650
24132 24212 1740892722311203343 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 8e7ab459ab640e62
18622 18868 1740892716801167889 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 53e866a3679424f0
32762 32949 1740892730941258893 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj df5f56033d710daf
40454 41059 1740892738633308426 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj acdfde9d3a8fa19
54756 55620 1740892752935400576 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 66f8d5533fdc5b70
29939 30097 1740892728118240719 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 80e87949567d7342
15733 16301 1740892713912149304 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj ace564763bfcd30f
63316 63436 1740892761495455760 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 2a9df8cad287a5e
59739 60632 1740892757918432697 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 63bde673362613f1
36126 36377 1740892734305280553 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj baf8625d99602a74
25813 25974 1740892723992214161 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 4c4bf1b52ef01fda
15273 15330 1740892713452146346 esp-idf/esp_netif/libesp_netif.a 76d5cbc4e4bcdce0
34586 34819 1740892732765270637 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj f351bb22e1baaa55
9639 9938 1740892707818110111 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 9255b0c4623eef66
43760 44287 1740892741939329721 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 185d3ffd898cd814
13546 13923 1740892711725135237 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 42f2e0ee09c6642b
56837 57724 1740892755016413989 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj f48cde2256b2b77c
35520 35767 1740892733699276651 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 29b918b1bdfc03f5
40818 41131 1740892738997310770 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj f1406b0af8abf892
41660 41888 1740892739839316194 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj bf33d96791aae643
2107 2475 1740892700286061687 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj e2e3668f0a16d853
28301 28460 1740892726480230175 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 135f45486c4219d3
18797 18906 1740892716976169015 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj 775b5c0ba3034d31
45053 45296 1740892743232338051 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj d762157c99238a61
32811 32939 1740892730990259208 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj 4263dfb079b1897e
58812 59234 1740892756991426721 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 99f213abb6be9313
60363 60803 1740892758542436720 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj f5cfe9e6a1a03473
27708 27838 1740892725887226358 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj 1e4ebfb55c522331
62090 62778 1740892760269447855 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b3dc40f372df59c0
14514 14818 1740892712693141463 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 7f3d51f5fd0f74ae
53390 54091 1740892751569391772 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj 15b61b879e53bebc
2274 2305 1740892700453062761 esp-idf/esp_eth/libesp_eth.a 7e3b94c1c6272b40
19776 22685 1740892717955175314 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 1a48cdc1841aeb4a
30097 30252 1740892728276241736 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 79e3a1bd73591138
45753 46002 1740892743932342560 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj dac9e704647aaa19
29626 29856 1740892727805238704 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 18b77fe83d0edff7
64195 64270 1740892762374461428 esp-idf/fatfs/libfatfs.a b8465dbf5abe9c00
45296 45736 1740892743475339616 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj c4b8d0a18e9d0882
6516 6592 1740892839555960000 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/app_check_size e71bc229bf872e1a
2686 3072 1740892700865065409 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj 68ae78a9d1d13110
62 93 1740892698269048723 esp-idf/esp_system/ld/sections.ld.in 52eefdc418759598
16326 16515 1740892714505153119 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj c6dbc1be38f790cd
14102 14244 1740892712281138813 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 3bb3ff17cc72a3df
7654 8438 1740892705833097347 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 363716f9b7bc5e41
60408 60446 1740892758587437010 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj 418453c2f26493f4
32351 32810 1740892730530256247 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj 40628a4cc0aa0b68
43735 43904 1740892741914329560 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 99e68492d0f97ea4
57767 58153 1740892755946419984 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 7843e83ac6bd9d42
46336 47796 1740892744515346316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 3445219aa771d66b
32685 32762 1740892730864258397 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj 9a5a553c765727d9
49929 50349 1740892748108369467 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/esp_timing.c.obj bce86fc280f56783
23733 23900 1740892721912200775 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 2eb2f6637d582d71
53334 53844 1740892751513391411 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b82a47971f7106a5
48 6203 1740893039602259188 build.ninja ab667c07e0478d6
6206 6911 1740892704385088037 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 3ca9d2c3e3cfaee1
16411 16437 1740892714590153666 esp-idf/vfs/libvfs.a 6290ec2cba2b3a62
28542 29483 1740892726721231726 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj cd35a469ba2acb6f
27931 29295 1740892726110227793 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 95a1ad557f553264
15301 15427 1740892713480146525 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj d190609858b78d47
16515 17229 1740892714694154335 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 429b633d111eece5
28618 29029 1740892726797232216 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 822bf992b02ddf0a
29298 29342 1740892727477236593 esp-idf/newlib/libnewlib.a 6a66aefea8bcc5ad
42266 42355 1740892740445320097 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b0a1179b33ec26d5
52478 52730 1740892750657385894 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj bb7a298152a3ab9b
44385 44583 1740892742564333747 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj d8365eb0c2307a02
2528 2686 1740892700707064393 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 509f3dc310d79342
6299 6705 1740892704478088635 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 5ba80fc126ee0420
16301 17980 1740892714480152958 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 12bef3c3e72d96
8880 9403 1740892707059105230 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj fd11fea9a674993
18751 18949 1740892716930168719 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 5b73f5d22855a3d7
51572 51856 1740892749752380062 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a d718961bd238ef5
10360 10588 1740892708539114747 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 8f3f04e9ce330b84
18388 18789 1740892716567166384 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 38848831f96b2c10
71 148 1740892833110918302 bootloader/bootloader.elf c338ba7c06f0c1b4
14935 15048 1740892713114144171 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj 6c8d8d587d335bc
7641 8035 1740892705820097263 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b67c0c7471e9342b
46165 46350 1740892744344345215 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 5a818ad5b246054e
62338 63316 1740892760517449454 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj c004180ca79be388
10126 10259 1740892708305113242 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj d3ffaf675820ce55
18352 18371 1740892716531166152 esp-idf/esp_driver_sdm/libesp_driver_sdm.a 45305873b6e31af5
51373 51393 1740892749571378895 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b392cd58e0916cc9
52670 52818 1740892750849387131 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj eccc0d49161c4d8e
32676 32760 1740892730855258339 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj 90e16ec9c51ed848
18219 19031 1740892716398165297 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b4e2565e70d3db9f
46350 46583 1740892744529346407 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj d073544f9c4a0e40
14244 14517 1740892712423139727 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 6a0534878e052325
51256 51458 1740892749435378019 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 53387af34136ada7
12195 12627 1740892710374126548 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 2376e634c374a4e9
63916 64116 1740892762095459629 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_spi_dev.c.obj 800d20cb11df0c1a
7824 8288 1740892706003098440 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj dc01346c9c693ae9
46966 47188 1740892745145350376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 6d3d6f19c52752f7
56181 56532 1740892754360409761 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 703610a87c533f90
51202 51480 1740892749381377671 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 366c9154d169bb38
56387 56478 1740892754566411089 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 8b1374a19286a73
64217 64275 1740892762396461570 esp-idf/mqtt/libmqtt.a 3ad07f6458230b5f
48579 49119 1740892746758360768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj 445479e506f845e5
43742 43867 1740892741921329605 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 128f70bb54baa1a2
48710 49441 1740892746889361612 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 259a8299d44155e3
49942 50092 1740892748121369551 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj e71ebce7861245c1
52819 53412 1740892750998388091 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj c6d48a510fbcf531
9732 9867 1740892707911110709 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 53f1641d861d5240
44407 44602 1740892742586333889 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 70874127c36dc8a5
51190 51437 1740892749369377593 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj ab31539da2d7d4ad
48372 49026 1740892746551359434 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 98776432e12721b0
44172 44305 1740892742351332375 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj dc720cd5f536fc01
51373 51393 1740892749571378895 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b392cd58e0916cc9
35123 35551 1740892733302274094 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 724a8cf064f7526d
42977 43353 1740892741156324677 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj d75c59933d9fb033
51895 52277 1740892750359383973 esp-idf/mbedtls/x509_crt_bundle 969692aa678d008e
38874 40262 1740892737053298250 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj bc01f19ce52682bb
45082 45203 1740892743261338238 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 75b2bdd24b120b38
50043 50683 1740892748222370202 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj 28f2b29f91f74ba6
18314 18352 1740892716493165908 esp-idf/esp_driver_i2c/libesp_driver_i2c.a 9a4eda261487efa
37976 38171 1740892736155292467 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 12c9cdc2dcffce27
1492 2021 1740892699671057734 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj 6de749ac7a86b076
50932 51190 1740892749111375931 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj 1445d3949decdce1
33114 33991 1740892731293261159 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 9cd72ba7c6d1fa1e
45003 45082 1740892743182337729 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 141bb04a30a097a8
44415 44614 1740892742594333941 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 7aa8d5383ffab9f6
60958 61952 1740892759137440556 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 4194419edb107fc7
44305 44413 1740892742484333232 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj e99ecf727bbfa14d
12849 13037 1740892711028130754 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj bf80b576632ebaf5
1393 1877 1740892699572057098 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj d5aed9eac4ca88f7
5592 5851 1740892703771084090 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj dc23598ed02cbb54
58153 58308 1740892756332422473 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 540c84fc81575867
43867 44172 1740892742046330410 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj df5440ae430ceb1a
33105 33317 1740892731284261101 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 1b8e97cb4b75a640
12878 13049 1740892711057130941 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b57a52afd22ed5c0
16749 16795 1740892714928155840 esp-idf/esp_phy/libesp_phy.a f61ded6781805979
49106 49244 1740892747285364164 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 83b808a5579cd9ce
43594 44114 1740892741773328652 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 9f35a16c3b6564ae
9938 10151 1740892708117112034 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 93a70aa22426ae84
53493 54045 1740892751672392435 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj db1010b52725d919
49271 49814 1740892747450365227 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj d3b125edc775c46b
173 5382 1740892838359952262 esp-idf/esp_system/ld/sections.ld 92e95530ee1a2fbc
54714 55092 1740892752893400305 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj dac181d15cacacde
41187 41221 1740892739366313147 esp-idf/esp_partition/libesp_partition.a c55e45f02cf5354a
43629 43760 1740892741808328877 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 13b6fdaded783b68
36969 37085 1740892735148285982 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj b31fe19e579bd1c5
51872 51895 1740892750051381988 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a cd4bc00f2c1094c9
6756 6972 1740892704935091574 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 4fb24622beacf074
795 817 1740892698974053254 esp-idf/esp_https_ota/libesp_https_ota.a fbaab148113b8b09
43353 43612 1740892741532327099 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 4e0a5c17b1141828
12434 12849 1740892710613128085 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj bd884c59bad061b4
53844 54281 1740892752023394698 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj cd6f7fc6129761b
42854 43415 1740892741033323885 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj cc513be7e17750c1
27477 27824 1740892725656224872 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 670d8ca9d693f0e4
42355 43064 1740892740534320671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/net_sockets.c.obj ff2be5b170da9f70
42480 42977 1740892740660321482 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 57adb8f4e31b5dc2
19504 23362 1740892717683173564 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 9cf60cfa6e3de031
37730 37974 1740892735910290889 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj ceba671489b8c3dd
41261 42064 1740892739440313624 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj 529034e876854cd6
47398 47615 1740892745577353159 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj 18a6ee8488cf850f
51226 51311 1740892749405377825 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 243f66d77c055965
41793 41833 1740892739973317057 esp-idf/app_update/libapp_update.a e5f4ff6de3f1395
49443 49562 1740892747622366336 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj d7b08df42d46238b
41178 41282 1740892739357313089 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj e7e32ee820b9db7
57680 58812 1740892755859419424 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj fb2bc95e0b339242
51023 51572 1740892749202376517 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 94c53634e8af3b2d
17980 18067 1740892716159163759 esp-idf/driver/libdriver.a 1f14d7533e428c44
15427 15473 1740892713606147336 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj a53329471b10f85c
539 732 1740892698718051609 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 34d154bb4602073f
1138 1393 1740892699317055458 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj a1f56ec68d36326
41059 41178 1740892739238312323 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 8e088b8d154c5e4d
15153 15300 1740892713332145573 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj ec207fda519b8299
11768 12737 1740892709947123802 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 8a203bdc65863f7d
15018 15273 1740892713197144705 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj 43b8624e1cdf3611
7678 8306 1740892705857097501 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj 8245cd1ae837487c
40994 41105 1740892739173311904 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 2058e6fd1b3e7df9
41119 41187 1740892739298312709 esp-idf/efuse/libefuse.a d84797d485ff4a6c
7745 7898 1740892705924097932 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 74c4cf46fc53bdf0
9179 9631 1740892707358107153 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj e104769e5b9b8e09
49244 49443 1740892747423365053 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 22b3ba321a52710c
14274 14437 1740892712453139920 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj a7c4015281709d58
2054 2092 1740892700233061346 esp-idf/tcp_transport/libtcp_transport.a a083375881307a66
17727 18070 1740892715906162131 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 8fd3e370a2ae8d23
4057 4377 1740892702236074222 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 26a7b2b7883eb9e6
54383 54408 1740892752562398172 esp-idf/riscv/libriscv.a f2ddbed72465da45
60804 61107 1740892758983439563 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 15b69b65600de95b
44602 45003 1740892742781335145 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 84677ef38e9cba33
28268 28301 1740892726447229963 esp-idf/pthread/libpthread.a 690fefe6c38cba32
11147 11344 1740892709326119808 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 5ff2fe25b0d11001
47360 47730 1740892745539352914 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj bc5c3345bc151b0d
519 828 1740892698698051480 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 45e8eae285f8f49a
34399 34583 1740892732578269433 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 22682005bd7a152e
25175 25959 1740892723354210055 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj 3eddc958a6f272b2
27958 28065 1740892726137227968 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj c782245a144755a0
26351 27356 1740892724530217624 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 9efb5e56b2f6691f
15474 15564 1740892713653147638 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 46c71ee86b99ae6b
50948 51134 1740892749127376034 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj 57ef956835c2c295
13620 13831 1740892711799135713 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 9a8d8ccfc52a4ffa
4229 4571 1740892702408075327 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj cb4c54eccfcaf9cc
3098 3553 1740892701277068057 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj de27d09192087252
30827 31397 1740892729006246435 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 6f14f2f19a3d2e48
18349 18893 1740892716528166133 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj adc308c02a1db647
63 398 1740892698406049603 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/partition_table/partition-table.bin f37611e406a0be45
13406 13645 1740892711585134337 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 5b03d48076f39dc2
28227 28267 1740892726406229699 esp-idf/cxx/libcxx.a a51a34763d081803
828 864 1740892699007053466 esp-idf/esp_http_server/libesp_http_server.a 1589326281765acd
59697 60408 1740892757876432427 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 3a1436e180ceb3af
34844 35169 1740892733023272298 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj aeab173229bc503b
63 398 1740892698406049603 partition_table/partition-table.bin f37611e406a0be45
1009 1345 1740892699188054629 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj ae8280e41ecb6c86
42056 42263 1740892740235318744 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 334cbf2656126cc7
63813 64114 1740892761993458971 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_api.c.obj 2d7682805fdfce2b
17655 18218 1740892715834161668 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj 1798ab31f56e72f5
14142 14367 1740892712321139071 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj f2d432fb84969c6f
40815 40994 1740892738994310751 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj f8bbc650a5d665ee
4897 5298 1740892703076079622 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 42eeaa6d725e0920
3582 3630 1740892701761071168 esp-idf/esp_wifi/libesp_wifi.a 270e0e1dad0a89b2
54470 54756 1740892752649398732 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj 157e475b28af387a
64230 64289 1740892762409461654 esp-idf/nvs_sec_provider/libnvs_sec_provider.a d6f0c2bbf870d202
58308 58353 1740892756487423472 esp-idf/unity/libunity.a 22cade79500210b5
38223 38457 1740892736402294057 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj e557134c4668c13f
45630 45872 1740892743809341768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 4cac51290ab2bc71
60104 60288 1740892758283435050 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 536c52b26bf72e98
57732 58361 1740892755911419759 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj fa8a31a92ae150d9
61107 61145 1740892759286441517 esp-idf/json/libjson.a 1f22bcb5d078c698
2930 3323 1740892701109066977 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 245d3f243f48c305
17158 17586 1740892715337158471 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj 5364c9eacca75e46
55711 55933 1740892753890406731 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj f5301e524340baeb
49651 49770 1740892747830367676 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 3de1e808e67e1659
13831 14100 1740892712010137070 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj ef6e6a74b488d203
15300 16188 1740892713479146519 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 72b47283415d84ec
71 148 1740892833110918302 bootloader/bootloader.map c338ba7c06f0c1b4
29476 29717 1740892727655237739 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj 721a27bf10ab0922
148 152 1740892833187918800 bootloader-prefix/src/bootloader-stamp/bootloader-install fa89eda5d1a165ca
1566 1786 1740892699745058209 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 3c3c8f2f0dedde83
33317 33417 1740892731496262466 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj a45fb746e5720b86
64268 64333 1740892762447461899 esp-idf/spiffs/libspiffs.a 9abf847d8050e08e
64179 64217 1740892762358461325 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 3fdac344f98d1017
56525 56837 1740892754704411978 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 6eed735741210a6a
27724 27958 1740892725903226461 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj 7485b8264671175
9209 9424 1740892707388107346 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 6208fcd938dcb430
173 5382 1740892838359952262 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/ld/sections.ld 92e95530ee1a2fbc
6172 6448 1740892704351087819 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 3090fc64e494b62b
56532 57413 1740892754711412023 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj cad96c6c6e714300
59148 59615 1740892757328428894 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 380a4a8b4bbffe1b
36248 36500 1740892734427281339 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj dfdfd049491aec06
61952 62091 1740892760131446965 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj d531a7db3f387d98
59339 59465 1740892757518430118 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 3eb9dfebb51ffc04
71 148 1740892833110918302 bootloader-prefix/src/bootloader-stamp/bootloader-build c338ba7c06f0c1b4
817 1138 1740892698996053395 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj d16cf3f617916916
32624 32682 1740892730803258004 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj 27a7e5bb234cf27a
61 91 1740892698268048716 esp-idf/esp_system/ld/memory.ld 7510debf444ae5a9
12627 12755 1740892710806129327 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 3d555a223af9a062
2004 2602 1740892700183061025 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj aa472d9a341ec00f
50092 50336 1740892748271370518 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj d55459f3cc79937f
19172 19843 1740892717351171428 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj 8492a113a409dadf
37312 38222 1740892735491288191 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj a5225ef36d56df51
56478 56908 1740892754657411675 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj 449f8bfd408989c0
14683 15207 1740892712862142550 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 73f08100ee9accdf
152 164 1740892833201918891 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/bootloader-complete f249f5b287000dc4
63301 63813 1740892761480455663 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 4e8d17e2f7a41cdb
63909 64267 1740892762088459584 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_encoder.c.obj b60f9219a8534fa3
71 148 1740892833110918302 bootloader/bootloader.bin c338ba7c06f0c1b4
71 148 1740892833110918302 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.map c338ba7c06f0c1b4
18067 18108 1740892716246164319 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a d725037be4e01383
27449 27493 1740892725628224691 esp-idf/esp_timer/libesp_timer.a efe06a44f98a0d68
16795 17170 1740892714974156136 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj 7a6c213fa1f1e305
71617 71640 1740892769797509303 CMakeFiles/ESP-IDF_Robot.elf.dir/project_elf_src_esp32c3.c.obj cf7ae6b5d3f11f91
6281 6516 1740892839555960000 .bin_timestamp 1d5386dfcf8a6b14
35672 35746 1740892733851277630 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 761c337cf30d0cee
14437 14648 1740892712616140968 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 8acb39de210d069
58830 58872 1740892757009426837 esp-idf/esp_https_server/libesp_https_server.a 4c7c44f226a2d739
60041 60363 1740892758220434644 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj 9f3e1746485e51f4
37085 37676 1740892735264286729 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj a6cce5eb4a218d0a
163 173 1740892833202918897 esp-idf/esp_app_format/libesp_app_format.a af6ebf1e2950f083
2091 2375 1740892700270061584 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj 25271c3344c8c31
27287 27348 1740892725466223649 esp-idf/esp_driver_uart/libesp_driver_uart.a e9d3bcfc06f54d9e
60803 63182 1740892758982439557 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj d65b5e2770b18b9c
13891 14123 1740892712070137456 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 73954684f6744f27
64144 64181 1740892762323461099 esp-idf/esp_hid/libesp_hid.a 7895e16e66f4644e
3411 3755 1740892701590070069 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 361a1a7dea8beb9f
35746 35872 1740892733925278106 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj cd7258410ab94958
51393 51421 1740892749599379075 bootloader-prefix/src/bootloader-stamp/bootloader-download 34d2739a1a8b8267
21275 24677 1740892719454184959 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 9ae0266ccc0b6007
64131 64147 1740892762310461016 esp-idf/esp_driver_cam/libesp_driver_cam.a 15d0aa6776c4ab31
69 81 1740892698256048639 project_elf_src_esp32c3.c 188673f5f8655ee0
29343 29625 1740892727522236882 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 2a3ce9ecac274c6e
55913 57001 1740892754092408033 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj 1a9ee85dd9f2ac15
49991 50206 1740892748170369867 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj fd34a1a565cb8e7f
60376 60558 1740892758555436804 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj 30950636f72a0d9
36377 36969 1740892734556282169 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj be09e3553d57d7d
54408 54518 1740892752587398333 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 52bd4886c073a20b
15207 16014 1740892713386145921 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj cb40c884faa35079
4990 5269 1740892703169080220 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 1d917babc9b45c23
3630 3930 1740892701809071477 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj bc16121639d21efd
5024 5293 1740892703203080438 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj da1ec48d39433aa0
63531 63909 1740892761710457147 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj eb9e651581086056
51449 51480 1740892749656379443 bootloader-prefix/src/bootloader-stamp/bootloader-patch 91ffd04543c26b98
28106 28262 1740892726285228920 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj 5d47059f6faf05f7
62927 63300 1740892761106453252 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 496b81c915a45194
60593 60991 1740892758772438203 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj 874c9aa515fe5a2a
61779 61984 1740892759958445850 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj da1e19ae6ea059d6
39668 40133 1740892737847303364 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 2ef539181a4711f1
59408 60041 1740892757587430563 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj fefe7e38bfd639ea
27493 27692 1740892725672224975 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj 7309c11ed461b92d
62374 63154 1740892760553449686 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj dd4db0ec80c4d3c0
49771 49929 1740892747950368449 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj a2c70df16ca4a8a
18574 18750 1740892716753167581 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj d875b74477b110af
8306 8920 1740892706485101539 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 547d86104ed8f81e
51480 63856 1740892762034459236 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 573c2e33d7f3cfb9
16858 17158 1740892715037156541 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 2826671a2f429b25
36378 36618 1740892734557282176 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj af496d4374d90f55
14209 14473 1740892712388139502 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 3ef813cd16a8e14
60558 60593 1740892758737437977 esp-idf/wear_levelling/libwear_levelling.a 523110c245fc3c29
61145 62374 1740892759324441762 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj d8ef2b266faea9e0
60991 61787 1740892759170440769 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj eb18a198c8698536
29029 29061 1740892727208234861 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj 4619b3270e874e7
15711 15948 1740892713890149163 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj f752ff3d104b864
48479 48579 1740892746658360124 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 9840717bc91814e2
26153 28226 1740892724332216350 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 82dafb4f79bf5f30
29681 29966 1740892727860239058 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj ef10f13c16a26305
22546 26902 1740892720725193137 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 2a1ff009fad5b97d
2170 2274 1740892700349062092 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj a01490470ade82b2
24679 25311 1740892722858206863 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj af1027176600ce81
22723 23622 1740892720902194276 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b3ac13d7b5e77bea
5749 6425 1740892703928085099 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 18aeaac814ad4379
27692 27952 1740892725871226255 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj fd2cde371ba29e62
732 851 1740892698911052849 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj e5f77fe1b560bdc3
3495 3941 1740892701674070609 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 586083acd1da0b25
3341 3727 1740892701520069619 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 853ea7be25f0de79
46975 47398 1740892745154350433 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj dffd39ca113a07b7
13708 13956 1740892711887136279 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 2fe2d80e3d877c8
56244 56387 1740892754423410167 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 5b96a4d55abe9d97
40289 40490 1740892738468307363 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj 192a9ddbeece7158
64181 64230 1740892762360461338 esp-idf/espcoredump/libespcoredump.a 6d2ace02a6a42810
2635 2929 1740892700814065081 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj 12c74575a95ada0c
61564 61779 1740892759743444463 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj e34a820b0e139c98
25668 25907 1740892723847213228 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 7ab88b01edc9e01a
19634 22723 1740892717813174400 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 1da19eec62764621
31944 32327 1740892730123253626 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj ecdf9a9c6c6ba753
71 148 1740892833110918302 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-build c338ba7c06f0c1b4
19736 19776 1740892717915175057 esp-idf/esp_driver_i2s/libesp_driver_i2s.a 9259053f14441949
33428 33717 1740892731607263181 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj dfd6c3137604e067
60495 60595 1740892758674437571 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj d687dbca83902162
18790 19231 1740892716969168970 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 65a4c1d307cdd824
42482 42854 1740892740661321489 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 94ada577694eae3b
55771 55875 1740892753950407118 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 1dbbfa9029818d3a
34687 34851 1740892732866271287 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj a8d10059b1e47079
27838 27931 1740892726017227195 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 933544b2abf0b904
18288 18314 1740892716467165740 esp-idf/esp_driver_ledc/libesp_driver_ledc.a d28174115f2969d5
16188 17655 1740892714367152231 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj ba446d990751d44b
6516 6592 1740892839555960000 esp-idf/esptool_py/CMakeFiles/app_check_size e71bc229bf872e1a
26536 26714 1740892724715218815 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj bdef56eda45909ef
27825 28106 1740892726004227111 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 7a2d5e09e35ba87d
16014 16411 1740892714193151112 esp-idf/lwip/liblwip.a af2efc6b60cd10b8
18070 18387 1740892716249164338 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 4240a6f031df6d3c
9403 9683 1740892707582108593 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj a5596dc85fa3915f
14814 15096 1740892712993143393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 2b202d2a8c69322f
15048 15296 1740892713227144898 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj e323a85bfd1d1220
55561 55913 1740892753740405764 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 178a3e6c5cbd4058
22685 23625 1740892720864194032 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj fa51c147548d50a3
5058 5383 1740892703237080657 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj 3b469d3eccc54616
5382 6281 1740892838421952663 ESP-IDF_Robot.elf 16b9f6aba7127230
7409 7678 1740892705588095772 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 19c5e8f572471edc
18868 19736 1740892717047169472 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj d7835269c0db34fb
3755 4057 1740892701934072280 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj f63c6527c0d0cc7f
41105 41228 1740892739284312619 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 63b0b944b0e11f84
9869 10090 1740892708048111590 esp-idf/wpa_supplicant/libwpa_supplicant.a d463fdc2145b1a2c
53196 53276 1740892751375390521 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj 6f5f6e5366b5c33f
8425 8880 1740892706604102305 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj f2dafe8de238ef62
14390 14683 1740892712569140666 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 9a4fb5ef2d46e980
58860 58972 1740892757039427030 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 6804525d62ac16c6
1345 1492 1740892699524056789 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj 92775347cab0f9a6
36618 36746 1740892734797283721 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj c02ad7c25c8dbf55
32878 32943 1740892731057259640 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj 6b2fb90e725a4a37
44114 44754 1740892742293332002 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj 408155226888dfa1
609 1702 1740892698788052059 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 9bb9dad6eade0181
4977 5223 1740892703156080136 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 36f7a0a4ec858520
11409 12195 1740892709588121493 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 1741ec83584de271
9451 9635 1740892707630108902 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 674e0cc8e603a5a1
1338 1565 1740892699517056744 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj baf3365505e62eef
1786 1890 1740892699965059623 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 10a47d31fb2193c5
28500 29710 1740892726679231456 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 44328462af11d047
34459 34632 1740892732638269819 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 78a2ed2fc640a6d3
10120 10358 1740892708299113204 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj a56f7d4a523f0d52
13956 14243 1740892712135137874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 505f7e2f7539abbf
1357 1584 1740892699536056866 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj a37805b91eeea57f
3895 4307 1740892702074073180 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj 8856be200840f099
13037 13708 1740892711216131963 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj fe3d7ef59569a4e0
27301 27477 1740892725480223739 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj c974aa67082e9fe3
27515 27724 1740892725695225122 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj d75bef43d9ad5778
26923 27301 1740892725102221306 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 303e977e95e47f9d
6449 6756 1740892704628089600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 4a7e40bc4700ec36
60811 61079 1740892758990439609 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj ce7bb3a0ff482a1d
12209 12468 1740892710388126638 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 40fd88095c61667b
11344 11606 1740892709523121075 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 6097c67641207843
1088 2054 1740892699267055137 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 618efb7740ef534a
11418 11945 1740892709597121551 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 4d811237cfac60c
39012 39181 1740892737191299139 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj 94e7b252216a15d2
6425 6875 1740892704604089445 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj e2cc4fc023169416
28782 29797 1740892726961233271 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj ebc6045374c2a753
54786 56195 1740892752965400769 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj 9f7f3cb0663a8d0e
1584 2170 1740892699763058325 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj bf8bcd42fea9d456
5220 5446 1740892703399081698 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 87d611d946bb1c06
32939 33012 1740892731118260032 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj 3c37475879d0ed36
10259 10573 1740892708438114098 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 5b17d459b6bbf0f2
51856 51871 1740892750036381892 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a eec6d449db63d3b3
19087 19285 1740892717266170881 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj cec4f627820b39c
49562 49691 1740892747741367102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 20d9e0782a129118
27251 27287 1740892725430223417 esp-idf/esp_event/libesp_event.a 8017452c60e256cf
9204 9525 1740892707383107314 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 8ef2b98aec1ce1ab
9424 9451 1740892707603108728 esp-idf/esp_coex/libesp_coex.a e2ec810572688aca
33631 33895 1740892731810264488 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 8aae1742a8a0d98f
45712 46533 1740892743891342296 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 9976b1bfc65dae42
59615 59697 1740892757794431898 esp-idf/protocomm/libprotocomm.a e0d2c1d8fd1152c4
10960 11147 1740892709139118606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 679ea23431345493
94 539 1740892698273048748 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj a91a1c70124dd055
5293 5543 1740892703472082168 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 9d005c0bb4739a13
37956 38347 1740892736135292338 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 3fe6e12c670bd61c
62091 62338 1740892760270447861 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 9caba7f82832aa8f
26238 26351 1740892724417216897 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj ff249689bdbee12e
2162 2336 1740892700341062041 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj 356617017d1e14e3
47730 48185 1740892745909355298 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj e826c8baff208572
2092 2162 1740892700271061591 esp-idf/esp_gdbstub/libesp_gdbstub.a 34efede208fa2d4e
46 6742 1740893039602259188 build.ninja ab667c07e0478d6
65 132 1740893039795260445 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj ce772850a2ca582b
66 132 1740893039796260452 bootloader-prefix/src/bootloader-stamp/bootloader-build c338ba7c06f0c1b4
66 132 1740893039796260452 bootloader/bootloader.elf c338ba7c06f0c1b4
66 132 1740893039796260452 bootloader/bootloader.bin c338ba7c06f0c1b4
66 132 1740893039796260452 bootloader/bootloader.map c338ba7c06f0c1b4
66 132 1740893039796260452 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-build c338ba7c06f0c1b4
66 132 1740893039796260452 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.elf c338ba7c06f0c1b4
66 132 1740893039796260452 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.bin c338ba7c06f0c1b4
66 132 1740893039796260452 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.map c338ba7c06f0c1b4
132 138 1740893039862260882 bootloader-prefix/src/bootloader-stamp/bootloader-install fa89eda5d1a165ca
132 138 1740893039862260882 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-install fa89eda5d1a165ca
132 140 1740893039862260882 esp-idf/esp_app_format/libesp_app_format.a af6ebf1e2950f083
138 147 1740893039876260973 CMakeFiles/bootloader-complete f249f5b287000dc4
138 147 1740893039876260973 bootloader-prefix/src/bootloader-stamp/bootloader-done f249f5b287000dc4
138 147 1740893039876260973 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/bootloader-complete f249f5b287000dc4
138 147 1740893039876260973 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-done f249f5b287000dc4
141 5392 1740893045059294744 esp-idf/esp_system/ld/sections.ld 92e95530ee1a2fbc
141 5392 1740893045059294744 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/ld/sections.ld 92e95530ee1a2fbc
5392 6296 1740893045122295155 ESP-IDF_Robot.elf 16b9f6aba7127230
6296 6528 1740893046257302551 .bin_timestamp 1d5386dfcf8a6b14
6296 6528 1740893046257302551 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/.bin_timestamp 1d5386dfcf8a6b14
6528 6590 1740893046258302557 esp-idf/esptool_py/CMakeFiles/app_check_size e71bc229bf872e1a
6528 6590 1740893046258302557 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/app_check_size e71bc229bf872e1a

View File

@@ -0,0 +1,615 @@
# This is the CMakeCache file.
# For build in directory: /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build
# It was generated by CMake: /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake
# 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
########################
//No help, variable specified on the command line.
CCACHE_ENABLE:UNINITIALIZED=0
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING='-march=rv32imc_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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING='-march=rv32imc_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=rv32imc_zicsr_zifencei --specs=nosys.specs '
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/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=/usr/local
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/home/alex/.espressif/tools/ninja/1.12.1/ninja
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-objdump
//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=ESP-IDF_Robot
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=3.6.2
//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=2
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-readelf
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/alex/esp/v5.3.2/esp-idf/tools/cmake/toolchain-esp32c3.cmake
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Disable package configuration, target export and installation
DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON
//Build Mbed TLS programs.
ENABLE_PROGRAMS:BOOL=
//Build Mbed TLS tests.
ENABLE_TESTING:BOOL=
//Value Computed by CMake
ESP-IDF_Robot_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build
//Value Computed by CMake
ESP-IDF_Robot_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
ESP-IDF_Robot_SOURCE_DIR:STATIC=/home/alex/github/ESP-Nodes/ESP-IDF_Robot
//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=/usr/bin/git
//IDF Build Target
IDF_TARGET:STRING=esp32c3
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/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=/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/mbedtls
//No help, variable specified on the command line.
PYTHON:UNINITIALIZED=/home/alex/.espressif/python_env/idf5.3_py3.12_env/bin/python
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//Allow unsafe builds. These builds ARE NOT SECURE.
UNSAFE_BUILD:BOOL=OFF
//Build Mbed TLS shared library.
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
//Build Mbed TLS static library.
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=/home/alex/esp/v5.3.2/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_mm;
//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;
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/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=/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ctest
//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=/home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot
//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=115
//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=/home/alex/.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
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//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=[/usr/bin/git][v2.45.2()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/alex/.espressif/python_env/idf5.3_py3.12_env/bin/python][cfound components: Interpreter ][v3.12.7()]
//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=/usr/local
//Compiler reason failure
_Python3_Compiler_REASON_FAILURE:INTERNAL=
//Development reason failure
_Python3_Development_REASON_FAILURE:INTERNAL=
_Python3_EXECUTABLE:INTERNAL=/home/alex/.espressif/python_env/idf5.3_py3.12_env/bin/python
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;7;32;64;;;abi3;/usr/lib/python3.12;/home/alex/.espressif/python_env/idf5.3_py3.12_env/lib/python3.12;/home/alex/.espressif/python_env/idf5.3_py3.12_env/lib/python3.12/site-packages;/home/alex/.espressif/python_env/idf5.3_py3.12_env/lib/python3.12/site-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=754236c1c1207f7a2064638fe9b9a14a
//NumPy reason failure
_Python3_NumPy_REASON_FAILURE:INTERNAL=

View File

@@ -0,0 +1,29 @@
set(CMAKE_ASM_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_ASM_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/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 )

View File

@@ -0,0 +1,82 @@
set(CMAKE_C_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "13.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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_C_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@@ -0,0 +1,102 @@
set(CMAKE_CXX_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "13.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 "23")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX26_COMPILE_FEATURES "")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_CXX_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/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")

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-6.11.0-18-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "6.11.0-18-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/alex/esp/v5.3.2/esp-idf/tools/cmake/toolchain-esp32c3.cmake")
set(CMAKE_SYSTEM "Generic")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,904 @@
#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.

View File

@@ -0,0 +1,919 @@
/* 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.

View File

@@ -0,0 +1,604 @@
---
events:
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
The target system is: Generic - -
The host system is: Linux - 6.11.0-18-generic - x86_64
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
Build flags: -march=rv32imc_zicsr_zifencei
Id flags:
The output was:
0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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:
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/3.30.2/CompilerIdC/a.out
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
Build flags: -march=rv32imc_zicsr_zifencei
Id flags:
The output was:
0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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:
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
riscv32-esp-elf-gcc (crosstool-NG esp-13.2.0_20240530) 13.2.0
Copyright (C) 2023 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:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-7rsGcZ"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-7rsGcZ"
cmakeVariables:
CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei "
CMAKE_C_FLAGS_DEBUG: "-g"
CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-7rsGcZ'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_2410e
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_2410e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/cczAAfp5.s
GNU C17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)
compiled by GNU C version 4.9.2, 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"
ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"
#include "..." search starts here:
#include <...> search starts here:
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include
End of search list.
Compiler executable checksum: cea9d2eee2e58fac38e115e3722efafa
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj /tmp/cczAAfp5.s
GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.'
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -o cmTC_2410e && :
Using built-in specs.
Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2410e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2410e.'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRkNVKh.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_2410e -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2410e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2410e.'
exitCode: 0
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
end of search list found
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (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: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-7rsGcZ']
ignore line: []
ignore line: [Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_2410e]
ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_2410e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/cczAAfp5.s]
ignore line: [GNU C17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)]
ignore line: [ compiled by GNU C version 4.9.2 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"]
ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
ignore line: [End of search list.]
ignore line: [Compiler executable checksum: cea9d2eee2e58fac38e115e3722efafa]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj /tmp/cczAAfp5.s]
ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.']
ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -o cmTC_2410e && :]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc]
ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2410e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2410e.']
link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRkNVKh.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_2410e -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group]
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccRkNVKh.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore
arg [-melf32lriscv] ==> ignore
arg [-o] ==> ignore
arg [cmTC_2410e] ==> ignore
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_2410e.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00010074]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2410e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2410e.']
ignore line: []
ignore line: []
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys]
implicit objs: []
implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-1QGXwc"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-1QGXwc"
cmakeVariables:
CMAKE_CXX_FLAGS: "-march=rv32imc_zicsr_zifencei "
CMAKE_CXX_FLAGS_DEBUG: "-g"
CMAKE_CXX_SCAN_FOR_MODULES: "OFF"
CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-1QGXwc'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_2d6d8
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_2d6d8.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccOnAEQo.s
GNU C++17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)
compiled by GNU C version 4.9.2, 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"
ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"
#include "..." search starts here:
#include <...> search starts here:
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include
End of search list.
Compiler executable checksum: d43f3be41970274ce4c980e5d26847a1
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccOnAEQo.s
GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.'
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_2d6d8 && :
Using built-in specs.
Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2d6d8' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2d6d8.'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXQPsHm.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_2d6d8 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2d6d8' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2d6d8.'
exitCode: 0
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
end of search list found
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:6 (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: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-1QGXwc']
ignore line: []
ignore line: [Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_2d6d8]
ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_2d6d8.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccOnAEQo.s]
ignore line: [GNU C++17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)]
ignore line: [ compiled by GNU C version 4.9.2 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"]
ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
ignore line: [End of search list.]
ignore line: [Compiler executable checksum: d43f3be41970274ce4c980e5d26847a1]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccOnAEQo.s]
ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_2d6d8 && :]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++]
ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2d6d8' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2d6d8.']
link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXQPsHm.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_2d6d8 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group]
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccXQPsHm.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore
arg [-melf32lriscv] ==> ignore
arg [-o] ==> ignore
arg [cmTC_2d6d8] ==> ignore
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_2d6d8.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00010074]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_2d6d8' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_2d6d8.']
ignore line: []
ignore line: []
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys]
implicit objs: []
implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)"
- "/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:136 (find_package)"
checks:
- "Performing Test CMAKE_HAVE_LIBC_PTHREAD"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-QRKykK"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-QRKykK"
cmakeVariables:
CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei "
CMAKE_C_FLAGS_DEBUG: "-g"
CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_HAVE_LIBC_PTHREAD"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-QRKykK'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_f3c51
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCMAKE_HAVE_LIBC_PTHREAD -march=rv32imc_zicsr_zifencei -o CMakeFiles/cmTC_f3c51.dir/src.c.obj -c /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-QRKykK/src.c
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_f3c51.dir/src.c.obj -o cmTC_f3c51 && :
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: CMakeFiles/cmTC_f3c51.dir/src.c.obj: in function `main':
src.c:(.text+0x6a): warning: pthread_atfork is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x4c): warning: pthread_cancel is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x30): warning: pthread_create is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x3e): warning: pthread_detach is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x74): warning: pthread_exit is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x5c): warning: pthread_join is not implemented and will always fail
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
exitCode: 0
-
kind: "try_compile-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)"
- "/home/alex/esp/v5.3.2/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:219 (CHECK_C_COMPILER_FLAG)"
checks:
- "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-wAGHyx"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-wAGHyx"
cmakeVariables:
CMAKE_C_FLAGS: "-march=rv32imc_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=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-wAGHyx'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_20f75
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_20f75.dir/src.c.obj -c /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/CMakeScratch/TryCompile-wAGHyx/src.c
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_20f75.dir/src.c.obj -o cmTC_20f75 && :
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
exitCode: 0
...

View File

@@ -0,0 +1,816 @@
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/menuconfig.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/confserver.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/save-defconfig.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/bootloader.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/gen_project_binary.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/app.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/erase_flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/merge-bin.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/monitor.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/encrypted-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/_project_elf_src.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/ESP-IDF_Robot.elf.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/size.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/size-files.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/size-components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/uf2.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/uf2-app.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/riscv/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/partition-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/partition_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/partition_table/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_update/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/efuse/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_common/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/__idf_hal.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/hal/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/__idf_log.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/log/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/__idf_heap.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/heap/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/__idf_soc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/soc/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/freertos/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/pthread/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cxx/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/app_trace/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_event/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/__idf_driver.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/driver/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/vfs/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/lwip/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/bt/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/__idf_unity.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/unity/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/cmock/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/__idf_console.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/console/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/http_parser/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_isp/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_cam/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_ppa/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/protocomm/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/fatfs/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/idf_test/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/__idf_json.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/json/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/mqtt/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/openthread/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/spiffs/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/ulp/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/usb/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/espressif__led_strip/CMakeFiles/install/strip.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/__idf_main.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/list_install_components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/install.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/install/local.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/main/CMakeFiles/install/strip.dir

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
e32b8e4d7b7082380a0ef1198639e572a24195ca

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x10000 ESP-IDF_Robot.bin

View File

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

View File

@@ -0,0 +1,6 @@
# 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=

View File

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

View File

@@ -0,0 +1,7 @@
# 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=

View File

@@ -0,0 +1 @@
cmd='/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake;-DSDKCONFIG=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/sdkconfig;-DIDF_PATH=/home/alex/esp/v5.3.2/esp-idf;-DIDF_TARGET=esp32c3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=/home/alex/.espressif/python_env/idf5.3_py3.12_env/bin/python;-DEXTRA_COMPONENT_DIRS=/home/alex/esp/v5.3.2/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=/home/alex/github/ESP-Nodes/ESP-IDF_Robot;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'

View File

@@ -0,0 +1,27 @@
# 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 "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader"
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix"
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/tmp"
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp"
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src"
"/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()

View File

@@ -0,0 +1 @@
9224a6a9b0e33cba9f96bb73173a5f47 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/bootloader.bin

Binary file not shown.

View File

@@ -0,0 +1,111 @@
# ninja log v6
47 123 1740892762524462395 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 56eddfe6bb5c0eb5
49 135 1740892762526462408 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj c89de7d2f9a8b807
50 163 1740892762527462415 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 23fb65f8885cd6d0
135 227 1740892762612462963 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 966c0cf7e51a44f0
123 230 1740892762600462886 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj a7417a19adf6a494
164 254 1740892762641463150 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 48a273dbf82721b7
230 339 1740892762707463576 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj c6b7507018712649
227 378 1740892762704463556 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 9707b5541d2ec570
256 379 1740892762733463743 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj 985910beaf8d2c61
31 393 1740892762508462292 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj dc69ee7b7ab3c9ef
46 410 1740892762523462389 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 123d8d6d9883938f
339 489 1740892762816464278 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj f10aba36f9ac2f9a
378 534 1740892762855464530 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj 7ac7b2afe4cc071d
379 676 1740892762856464536 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj 5cf303544f8f62ae
44 738 1740892762521462376 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 42310bcbd07995d4
534 744 1740892763011465536 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj 75478ae767f7bdf4
676 762 1740892763153466452 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj 28a27c69a7f029e6
738 776 1740892763215466851 esp-idf/log/liblog.a 2d4714ff12b1dd5d
776 804 1740892763253467096 esp-idf/esp_rom/libesp_rom.a 2b3fe8d35f03f77d
805 820 1740892763282467283 esp-idf/esp_common/libesp_common.a 78e52a24fcc05624
762 845 1740892763239467006 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj d4fe926470024aee
744 880 1740892763221466890 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj c662c07499ed32d3
393 911 1740892762870464627 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj 16e8eb7a011d41d8
820 987 1740892763297467380 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj 713b7046acecf208
489 990 1740892762966465246 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj f09d7b9244c8ec53
410 993 1740892762887464736 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj 9d0c93bebfaf4c5b
993 1057 1740892763470468496 esp-idf/esp_hw_support/libesp_hw_support.a 5885b37b24af99c6
845 1153 1740892763322467541 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj b35139913df5377d
1153 1165 1740892763630469528 esp-idf/esp_system/libesp_system.a 90353ea19cca2bb
880 1188 1740892763357467767 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj 35b96913b63864ef
987 1238 1740892763464468457 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b2296acb8f0eaa90
1188 1358 1740892763665469753 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj fe5a959a0645bb3
990 1367 1740892763467468477 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 5139ff09e3033b63
911 1372 1740892763388467967 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 4a231d28c5d50365
1238 1417 1740892763715470076 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj adba46e58c9e5505
1358 1446 1740892763835470850 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj a671f37b2c6cbffe
1372 1482 1740892763849470940 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 89f1239c6989cc19
1368 1515 1740892763845470914 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4d84ed41e1052b15
1166 1571 1740892763643469611 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 75f76cdfd8f2f776
1482 1578 1740892763959471649 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj 3451f76101296773
1447 1582 1740892763924471424 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b4ba51ad819f759d
1057 1622 1740892763534468909 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 5e48b6cde0a12ef7
1417 1624 1740892763894471230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b1ac8702791814a5
1622 1752 1740892764099472552 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 4724cc8722dfeb3f
1571 1840 1740892764048472223 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 9d35b3597a70d4fb
1579 1884 1740892764056472275 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj 7a879d7ce486283
1840 1915 1740892764317473958 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj bb34345115631695
1515 1932 1740892763992471862 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj e92bd05926715a8f
1915 2010 1740892764392474442 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 184eafd8ab8b242e
1752 2020 1740892764229473391 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 2ec28593833aafdb
1932 2033 1740892764409474551 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj a904caf1e2e6c357
1884 2037 1740892764361474242 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 4ed4381ee931ea84
2037 2084 1740892764514475228 esp-idf/efuse/libefuse.a 2788b6dae6a932c3
2010 2086 1740892764487475055 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj 320f5fc027b848d5
2033 2115 1740892764510475203 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 6dac9f1b647b94c4
2084 2207 1740892764561475532 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 9496c9e515d4078a
2115 2211 1740892764592475731 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f03ab2805b4590a0
1582 2318 1740892764059472294 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj de52bf87800899af
2207 2321 1740892764684476325 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 988d508b46b6bd6f
2020 2323 1740892764497475119 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj 8dd08793073309
2087 2337 1740892764564475551 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 2a12886484ee8afb
2211 2397 1740892764688476351 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj 4366b7ae2508500f
2397 2506 1740892764874477550 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 4a50681d1527afe9
2318 2514 1740892764795477041 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj aebebaa036f17a51
2323 2547 1740892764800477073 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 1cf504abc7db6387
2514 2558 1740892764991478305 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj be44200dc9fb4ba6
2558 2590 1740892765035478588 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj dd01b500fecb7dc
2322 2603 1740892764799477066 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 2c1b9b8f3fb3a96a
2506 2609 1740892764983478253 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 76d7cf3c730d8be
1625 2618 1740892764102472571 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 6a0faed7d743013b
2547 2621 1740892765024478517 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj 14af1a7ff9a69803
2603 2656 1740892765080478879 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj 87bc11c92b64c986
2590 2657 1740892765067478795 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj e87071c68e45789a
2609 2664 1740892765086478917 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj 12c357ea15c53955
2618 2692 1740892765095478975 esp-idf/bootloader_support/libbootloader_support.a c483e07c0bed40f1
2665 2695 1740892765142479279 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj 887f351997fd4321
2656 2704 1740892765133479220 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj 350fde6115f5e3e4
2621 2711 1740892765098478995 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj a37bccf5542384ac
2692 2716 1740892765169479453 esp-idf/esp_bootloader_format/libesp_bootloader_format.a d35f7e569d6f8744
2657 2720 1740892765134479227 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj 9c74f5e655bb98a2
2711 2739 1740892765188479575 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj 1c59d3c25e14c4a
2716 2750 1740892765193479607 esp-idf/spi_flash/libspi_flash.a 389a47fa7bfcd5c1
2695 2771 1740892765172479472 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj d3f0930b8e50bf92
2750 2775 1740892765227479827 esp-idf/hal/libhal.a 32e01e3f8de61462
2704 2783 1740892765181479530 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj db20bce36f0597d8
2720 2789 1740892765197479633 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj 90eecd829f7cf3e7
2784 2792 1740892765267480085 project_elf_src_esp32c3.c c8f8f23caf494031
2784 2792 1740892765267480085 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/project_elf_src_esp32c3.c c8f8f23caf494031
2739 2803 1740892765216479756 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj 663b79677796870
2771 2819 1740892765248479962 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj aaefef53746948e2
2792 2819 1740892765269480098 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj 1860aac9b10cff90
2776 2824 1740892765253479994 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj 82c0209cb0ec3c60
2789 2903 1740892765266480078 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj a5b1f3fb19e25b03
2337 3343 1740892764814477163 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj d27bd5134c589be1
3343 3362 1740892765820483651 esp-idf/micro-ecc/libmicro-ecc.a 864910cfae95284
3362 3382 1740892765839483774 esp-idf/soc/libsoc.a 2294f2f9f889f923
3382 3395 1740892765859483903 esp-idf/main/libmain.a 554f14ac6119ac9d
3395 3453 1740892765872483987 bootloader.elf f50718dc42433b9a
3453 3619 1740892766095485425 .bin_timestamp fd1cc03ede1173b7
3453 3619 1740892766095485425 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/.bin_timestamp fd1cc03ede1173b7
3619 3669 1740892766096485431 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
3619 3669 1740892766096485431 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
9 107 1740892788081627299 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
9 107 1740892788081627299 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
9 65 1740892811608779268 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
9 65 1740892811608779268 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
8 67 1740892833126918405 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
8 67 1740892833126918405 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
8 60 1740893039809260536 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9
8 60 1740893039809260536 /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 600570684236e3d9

View File

@@ -0,0 +1,446 @@
# This is the CMakeCache file.
# For build in directory: /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader
# It was generated by CMake: /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake
# 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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING='-march=rv32imc_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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING='-march=rv32imc_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=rv32imc_zicsr_zifencei --specs=nosys.specs '
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_LINKER:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/home/alex/.espressif/tools/ninja/1.12.1/ninja
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-objdump
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-readelf
//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=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/alex/esp/v5.3.2/esp-idf/tools/cmake/toolchain-esp32c3.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=/home/alex/esp/v5.3.2/esp-idf/components/bootloader
//Git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
//No help, variable specified on the command line.
IDF_PATH:UNINITIALIZED=/home/alex/esp/v5.3.2/esp-idf
//IDF Build Target
IDF_TARGET:STRING=esp32c3
//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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot
//No help, variable specified on the command line.
PYTHON:UNINITIALIZED=/home/alex/.espressif/python_env/idf5.3_py3.12_env/bin/python
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//No help, variable specified on the command line.
SDKCONFIG:UNINITIALIZED=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/sdkconfig
//Value Computed by CMake
bootloader_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader
//Value Computed by CMake
bootloader_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
bootloader_SOURCE_DIR:STATIC=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=/home/alex/esp/v5.3.2/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=/home/alex/github/ESP-Nodes/ESP-IDF_Robot/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=/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ctest
//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=/home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake
//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=/home/alex/esp/v5.3.2/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=24
//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=/home/alex/.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
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.45.2()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1

View File

@@ -0,0 +1,29 @@
set(CMAKE_ASM_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_ASM_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/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 )

View File

@@ -0,0 +1,82 @@
set(CMAKE_C_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "13.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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_C_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@@ -0,0 +1,102 @@
set(CMAKE_CXX_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "13.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 "23")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX26_COMPILE_FEATURES "")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr")
set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar")
set(CMAKE_CXX_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar")
set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ld")
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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/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")

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-6.11.0-18-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "6.11.0-18-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/alex/esp/v5.3.2/esp-idf/tools/cmake/toolchain-esp32c3.cmake")
set(CMAKE_SYSTEM "Generic")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,904 @@
#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

View File

@@ -0,0 +1,919 @@
/* 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;
}

View File

@@ -0,0 +1,538 @@
---
events:
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
The target system is: Generic - -
The host system is: Linux - 6.11.0-18-generic - x86_64
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
Build flags: -march=rv32imc_zicsr_zifencei
Id flags:
The output was:
0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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:
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
Build flags: -march=rv32imc_zicsr_zifencei
Id flags:
The output was:
0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_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:
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
riscv32-esp-elf-gcc (crosstool-NG esp-13.2.0_20240530) 13.2.0
Copyright (C) 2023 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:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-SRXxyg"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-SRXxyg"
cmakeVariables:
CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei "
CMAKE_C_FLAGS_DEBUG: "-g"
CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-SRXxyg'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_7a86c
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7a86c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccCHrY2o.s
GNU C17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)
compiled by GNU C version 4.9.2, 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"
ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"
#include "..." search starts here:
#include <...> search starts here:
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include
End of search list.
Compiler executable checksum: cea9d2eee2e58fac38e115e3722efafa
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj /tmp/ccCHrY2o.s
GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.'
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -o cmTC_7a86c && :
Using built-in specs.
Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc
COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_7a86c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_7a86c.'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccFDVk06.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_7a86c -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_7a86c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_7a86c.'
exitCode: 0
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
end of search list found
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (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: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-SRXxyg']
ignore line: []
ignore line: [Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_7a86c]
ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7a86c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccCHrY2o.s]
ignore line: [GNU C17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)]
ignore line: [ compiled by GNU C version 4.9.2 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"]
ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
ignore line: [End of search list.]
ignore line: [Compiler executable checksum: cea9d2eee2e58fac38e115e3722efafa]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj /tmp/ccCHrY2o.s]
ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.']
ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -o cmTC_7a86c && :]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc]
ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_7a86c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_7a86c.']
link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccFDVk06.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_7a86c -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group]
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccFDVk06.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore
arg [-melf32lriscv] ==> ignore
arg [-o] ==> ignore
arg [cmTC_7a86c] ==> ignore
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_7a86c.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00010074]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_7a86c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_7a86c.']
ignore line: []
ignore line: []
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys]
implicit objs: []
implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
source: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-KTrMWm"
binary: "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-KTrMWm"
cmakeVariables:
CMAKE_CXX_FLAGS: "-march=rv32imc_zicsr_zifencei "
CMAKE_CXX_FLAGS_DEBUG: "-g"
CMAKE_CXX_SCAN_FOR_MODULES: "OFF"
CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs "
CMAKE_MODULE_PATH: "/home/alex/esp/v5.3.2/esp-idf/tools/cmake;/home/alex/esp/v5.3.2/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
Change Dir: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-KTrMWm'
Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_f4506
[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f4506.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccmVRBtW.s
GNU C++17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)
compiled by GNU C version 4.9.2, 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"
ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"
ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"
#include "..." search starts here:
#include <...> search starts here:
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include
End of search list.
Compiler executable checksum: d43f3be41970274ce4c980e5d26847a1
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccmVRBtW.s
GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.'
[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_f4506 && :
Using built-in specs.
Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++
COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530)
COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/
LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_f4506' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_f4506.'
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6UwY1K.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_f4506 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group
/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074
COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_f4506' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_f4506.'
exitCode: 0
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
end of search list found
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "/home/alex/esp/v5.3.2/esp-idf/tools/cmake/project.cmake:564 (__project)"
- "CMakeLists.txt:66 (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: '/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-KTrMWm']
ignore line: []
ignore line: [Run Build Command(s): /home/alex/.espressif/tools/ninja/1.12.1/ninja -v cmTC_f4506]
ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f4506.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccmVRBtW.s]
ignore line: [GNU C++17 (crosstool-NG esp-13.2.0_20240530) version 13.2.0 (riscv32-esp-elf)]
ignore line: [ compiled by GNU C version 4.9.2 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 "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"]
ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"]
ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed]
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include]
ignore line: [End of search list.]
ignore line: [Compiler executable checksum: d43f3be41970274ce4c980e5d26847a1]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/']
ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccmVRBtW.s]
ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20240530) 2.41]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_f4506 && :]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-g++]
ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper]
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-build_pc-linux-gnu --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-13.2.0_20240530' --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 --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --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]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20240530) ]
ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/]
ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_f4506' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_f4506.']
link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6UwY1K.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -o cmTC_f4506 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group]
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc6UwY1K.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore
arg [-melf32lriscv] ==> ignore
arg [-o] ==> ignore
arg [cmTC_f4506] ==> ignore
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib]
arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_f4506.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00010074]
ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_f4506' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_f4506.']
ignore line: []
ignore line: []
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib]
collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys]
implicit objs: []
implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/riscv32-esp-elf/usr/lib]
implicit fwks: []
...

View File

@@ -0,0 +1,84 @@
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/menuconfig.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/confserver.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/save-defconfig.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/gen_project_binary.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/app.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/erase_flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/merge-bin.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/monitor.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/_project_elf_src.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/bootloader.elf.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/size.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/size-files.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/size-components.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/uf2.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/uf2-app.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/riscv/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/riscv/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir
/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir

View File

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

View File

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

View File

@@ -0,0 +1 @@
9d7f2d69f50d1288526d4f1027108e314e8c879f

View File

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

View File

@@ -0,0 +1 @@
9d7f2d69f50d1288526d4f1027108e314e8c879f

View File

@@ -0,0 +1,319 @@
# 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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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_soc_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_hal_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $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}/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $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 = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning additional files.
rule CLEAN_ADDITIONAL
command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake
description = Cleaning additional files...
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = /home/alex/.espressif/tools/ninja/1.12.1/ninja $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = /home/alex/.espressif/tools/ninja/1.12.1/ninja -t targets
description = All primary targets available:

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,62 @@
# Install script for directory: /home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/esp-idf/cmake_install.cmake")
endif()
if(CMAKE_INSTALL_COMPONENT)
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
unset(CMAKE_INST_COMP_HASH)
endif()
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,494 @@
[
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj -c /home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/project_elf_src_esp32c3.c",
"file": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/project_elf_src_esp32c3.c",
"output": "CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/lldesc.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/lldesc.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/dport_access_common.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/dport_access_common.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/interrupts.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/interrupts.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/gpio_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/gpio_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/uart_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/uart_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/adc_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/adc_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/gdma_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/gdma_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/spi_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/spi_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/ledc_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/ledc_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/rmt_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/rmt_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/sdm_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/sdm_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/i2s_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/i2s_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/i2c_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/i2c_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/timer_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/timer_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/mpi_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/mpi_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/twai_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/twai_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/wdt_periph.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/wdt_periph.c",
"output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c",
"output": "esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/hal_utils.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/hal_utils.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/efuse_hal.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/efuse_hal.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/efuse_hal.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/efuse_hal.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/wdt_hal_iram.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/wdt_hal_iram.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/mmu_hal.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/mmu_hal.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/hal/cache_hal.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/hal/cache_hal.c",
"output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/spi_flash/spi_flash_wrap.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/spi_flash_wrap.c",
"output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c",
"output": "esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_common.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_common.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_common_loader.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_common_loader.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_clock_init.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_clock_init.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_mem.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_mem.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_random.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_random.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_efuse.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_efuse.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/flash_encrypt.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/flash_encrypt.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/secure_boot.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/secure_boot.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_utility.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_utility.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/flash_partitions.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/flash_partitions.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp_image_format.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp_image_format.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_init.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_init.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_console.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_console.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_console_loader.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_console_loader.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_panic.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/src/bootloader_panic.c",
"output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_table.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_table.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_api.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_api.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_fields.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_fields.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_utility.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/src/esp_efuse_utility.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c",
"output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_system/esp_err.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_system/esp_err.c",
"output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/cpu.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/cpu.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/esp_memory_utils.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/esp_memory_utils.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c",
"output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/include -I/home/alex/esp/v5.3.2/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_common/src/esp_err_to_name.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_common/src/esp_err_to_name.c",
"output": "esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_crc.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_crc.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_sys.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_sys.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_uart.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_uart.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_efuse.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_efuse.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_systimer.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/patches/esp_rom_systimer.c",
"output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/log/log.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/log/log.c",
"output": "esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/log/log_buffers.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/log/log_buffers.c",
"output": "esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/log/log_noos.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/log/log_noos.c",
"output": "esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj"
},
{
"directory": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader",
"command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20240530/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.3.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/config -I/home/alex/esp/v5.3.2/esp-idf/components/log/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/include/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_common/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.3.2/esp-idf/components/riscv/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/include -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.3.2/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.3.2/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.3.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj -c /home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/main/bootloader_start.c",
"file": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/subproject/main/bootloader_start.c",
"output": "esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj"
}
]

View File

@@ -0,0 +1,12 @@
{
"COMPONENT_KCONFIGS": "/home/alex/esp/v5.3.2/esp-idf/components/efuse/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/esp_common/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/esp_system/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/freertos/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/hal/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/log/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/newlib/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/soc/Kconfig;/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/Kconfig",
"COMPONENT_KCONFIGS_PROJBUILD": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/Kconfig.projbuild;/home/alex/esp/v5.3.2/esp-idf/components/esp_app_format/Kconfig.projbuild;/home/alex/esp/v5.3.2/esp-idf/components/esp_rom/Kconfig.projbuild;/home/alex/esp/v5.3.2/esp-idf/components/esptool_py/Kconfig.projbuild;/home/alex/esp/v5.3.2/esp-idf/components/partition_table/Kconfig.projbuild",
"COMPONENT_SDKCONFIG_RENAMES": "/home/alex/esp/v5.3.2/esp-idf/components/bootloader/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32c3;/home/alex/esp/v5.3.2/esp-idf/components/esp_system/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/esp_system/sdkconfig.rename.esp32c3;/home/alex/esp/v5.3.2/esp-idf/components/esptool_py/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/freertos/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/hal/sdkconfig.rename;/home/alex/esp/v5.3.2/esp-idf/components/newlib/sdkconfig.rename.esp32c3;/home/alex/esp/v5.3.2/esp-idf/components/spi_flash/sdkconfig.rename",
"IDF_TARGET": "esp32c3",
"IDF_TOOLCHAIN": "gcc",
"IDF_VERSION": "5.3.2",
"IDF_ENV_FPGA": "",
"IDF_PATH": "/home/alex/esp/v5.3.2/esp-idf",
"COMPONENT_KCONFIGS_SOURCE_FILE": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/kconfigs.in",
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/alex/github/ESP-Nodes/ESP-IDF_Robot/build/bootloader/kconfigs_projbuild.in"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,538 @@
/*
* Automatically generated file. DO NOT EDIT.
* Espressif IoT Development Framework (ESP-IDF) 5.3.2 Configuration Header
*/
#pragma once
#define CONFIG_SOC_ADC_SUPPORTED 1
#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1
#define CONFIG_SOC_UART_SUPPORTED 1
#define CONFIG_SOC_GDMA_SUPPORTED 1
#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1
#define CONFIG_SOC_GPTIMER_SUPPORTED 1
#define CONFIG_SOC_TWAI_SUPPORTED 1
#define CONFIG_SOC_BT_SUPPORTED 1
#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1
#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1
#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1
#define CONFIG_SOC_XT_WDT_SUPPORTED 1
#define CONFIG_SOC_PHY_SUPPORTED 1
#define CONFIG_SOC_WIFI_SUPPORTED 1
#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1
#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1
#define CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG 1
#define CONFIG_SOC_EFUSE_SUPPORTED 1
#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1
#define CONFIG_SOC_RTC_MEM_SUPPORTED 1
#define CONFIG_SOC_I2S_SUPPORTED 1
#define CONFIG_SOC_RMT_SUPPORTED 1
#define CONFIG_SOC_SDM_SUPPORTED 1
#define CONFIG_SOC_GPSPI_SUPPORTED 1
#define CONFIG_SOC_LEDC_SUPPORTED 1
#define CONFIG_SOC_I2C_SUPPORTED 1
#define CONFIG_SOC_SYSTIMER_SUPPORTED 1
#define CONFIG_SOC_SUPPORT_COEXISTENCE 1
#define CONFIG_SOC_AES_SUPPORTED 1
#define CONFIG_SOC_MPI_SUPPORTED 1
#define CONFIG_SOC_SHA_SUPPORTED 1
#define CONFIG_SOC_HMAC_SUPPORTED 1
#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1
#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1
#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1
#define CONFIG_SOC_MEMPROT_SUPPORTED 1
#define CONFIG_SOC_BOD_SUPPORTED 1
#define CONFIG_SOC_CLK_TREE_SUPPORTED 1
#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1
#define CONFIG_SOC_WDT_SUPPORTED 1
#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1
#define CONFIG_SOC_RNG_SUPPORTED 1
#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1
#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1
#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1
#define CONFIG_SOC_PM_SUPPORTED 1
#define CONFIG_SOC_XTAL_SUPPORT_40M 1
#define CONFIG_SOC_AES_SUPPORT_DMA 1
#define CONFIG_SOC_AES_GDMA 1
#define CONFIG_SOC_AES_SUPPORT_AES_128 1
#define CONFIG_SOC_AES_SUPPORT_AES_256 1
#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1
#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1
#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1
#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1
#define CONFIG_SOC_ADC_DMA_SUPPORTED 1
#define CONFIG_SOC_ADC_PERIPH_NUM 2
#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 5
#define CONFIG_SOC_ADC_ATTEN_NUM 4
#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1
#define CONFIG_SOC_ADC_PATT_LEN_MAX 8
#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12
#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12
#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4
#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4
#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2
#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611
#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12
#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12
#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1
#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1
#define CONFIG_SOC_ADC_SHARED_POWER 1
#define CONFIG_SOC_APB_BACKUP_DMA 1
#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1
#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1
#define CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE 0x4000
#define CONFIG_SOC_CPU_CORES_NUM 1
#define CONFIG_SOC_CPU_INTR_NUM 32
#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1
#define CONFIG_SOC_CPU_HAS_CSR_PC 1
#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 8
#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 8
#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000
#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072
#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16
#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100
#define CONFIG_SOC_AHB_GDMA_VERSION 1
#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1
#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3
#define CONFIG_SOC_GPIO_PORT 1
#define CONFIG_SOC_GPIO_PIN_COUNT 22
#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1
#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1
#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1
#define CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP 1
#define CONFIG_SOC_GPIO_IN_RANGE_MAX 21
#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 21
#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK 0
#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT 6
#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x00000000003FFFC0
#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1
#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3
#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1
#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8
#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8
#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1
#define CONFIG_SOC_I2C_NUM 1
#define CONFIG_SOC_HP_I2C_NUM 1
#define CONFIG_SOC_I2C_FIFO_LEN 32
#define CONFIG_SOC_I2C_CMD_REG_NUM 8
#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1
#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1
#define CONFIG_SOC_I2C_SUPPORT_XTAL 1
#define CONFIG_SOC_I2C_SUPPORT_RTC 1
#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1
#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1
#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1
#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1
#define CONFIG_SOC_I2S_NUM 1
#define CONFIG_SOC_I2S_HW_VERSION_2 1
#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1
#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1
#define CONFIG_SOC_I2S_SUPPORTS_PCM 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1
#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2
#define CONFIG_SOC_I2S_SUPPORTS_TDM 1
#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1
#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1
#define CONFIG_SOC_LEDC_CHANNEL_NUM 6
#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14
#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1
#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1
#define CONFIG_SOC_MMU_PERIPH_NUM 1
#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000
#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8
#define CONFIG_SOC_RMT_GROUPS 1
#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2
#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2
#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4
#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48
#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1
#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1
#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1
#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1
#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1
#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1
#define CONFIG_SOC_RMT_SUPPORT_XTAL 1
#define CONFIG_SOC_RMT_SUPPORT_APB 1
#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1
#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128
#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 108
#define CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND 1
#define CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND 1
#define CONFIG_SOC_RTCIO_PIN_COUNT 0
#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4
#define CONFIG_SOC_MPI_OPERATIONS_NUM 3
#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072
#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968
#define CONFIG_SOC_SHA_SUPPORT_DMA 1
#define CONFIG_SOC_SHA_SUPPORT_RESUME 1
#define CONFIG_SOC_SHA_GDMA 1
#define CONFIG_SOC_SHA_SUPPORT_SHA1 1
#define CONFIG_SOC_SHA_SUPPORT_SHA224 1
#define CONFIG_SOC_SHA_SUPPORT_SHA256 1
#define CONFIG_SOC_SDM_GROUPS 1
#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4
#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1
#define CONFIG_SOC_SPI_PERIPH_NUM 2
#define CONFIG_SOC_SPI_MAX_CS_NUM 6
#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64
#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1
#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1
#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1
#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1
#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1
#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1
#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1
#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1
#define CONFIG_SOC_SPI_SCT_SUPPORTED 1
#define CONFIG_SOC_SPI_SCT_REG_NUM 14
#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1
#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA
#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1
#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16
#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1
#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2
#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3
#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32
#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20
#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1
#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1
#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1
#define CONFIG_SOC_TIMER_GROUPS 2
#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1
#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54
#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1
#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1
#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2
#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1
#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1
#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1
#define CONFIG_SOC_TWAI_BRP_MIN 2
#define CONFIG_SOC_TWAI_BRP_MAX 16384
#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1
#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1
#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1
#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1
#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1
#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1
#define CONFIG_SOC_EFUSE_DIS_ICACHE 1
#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1
#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1
#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3
#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1
#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1
#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1
#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16
#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 512
#define CONFIG_SOC_UART_NUM 2
#define CONFIG_SOC_UART_HP_NUM 2
#define CONFIG_SOC_UART_FIFO_LEN 128
#define CONFIG_SOC_UART_BITRATE_MAX 5000000
#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1
#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1
#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1
#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1
#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1
#define CONFIG_SOC_COEX_HW_PTI 1
#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21
#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192
#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12
#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1
#define CONFIG_SOC_PM_SUPPORT_WIFI_PD 1
#define CONFIG_SOC_PM_SUPPORT_BT_PD 1
#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1
#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1
#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1
#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1
#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1
#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1
#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1
#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1
#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1
#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1
#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1
#define CONFIG_SOC_WIFI_HW_TSF 1
#define CONFIG_SOC_WIFI_FTM_SUPPORT 1
#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1
#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1
#define CONFIG_SOC_WIFI_CSI_SUPPORT 1
#define CONFIG_SOC_WIFI_MESH_SUPPORT 1
#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1
#define CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND 1
#define CONFIG_SOC_BLE_SUPPORTED 1
#define CONFIG_SOC_BLE_MESH_SUPPORTED 1
#define CONFIG_SOC_BLE_50_SUPPORTED 1
#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1
#define CONFIG_SOC_BLUFI_SUPPORTED 1
#define CONFIG_SOC_PHY_COMBO_MODULE 1
#define CONFIG_IDF_CMAKE 1
#define CONFIG_IDF_TOOLCHAIN "gcc"
#define CONFIG_IDF_TARGET_ARCH_RISCV 1
#define CONFIG_IDF_TARGET_ARCH "riscv"
#define CONFIG_IDF_TARGET "esp32c3"
#define CONFIG_IDF_INIT_VERSION "5.3.2"
#define CONFIG_IDF_TARGET_ESP32C3 1
#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0005
#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1
#define CONFIG_APP_BUILD_GENERATE_BINARIES 1
#define CONFIG_APP_BUILD_BOOTLOADER 1
#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1
#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1
#define CONFIG_BOOTLOADER_PROJECT_VER 1
#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0
#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1
#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1
#define CONFIG_BOOTLOADER_LOG_LEVEL 3
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1
#define CONFIG_SECURE_BOOT_V2_PREFERRED 1
#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1
#define CONFIG_APP_COMPILE_TIME_DATE 1
#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9
#define CONFIG_ESP_ROM_HAS_CRC_LE 1
#define CONFIG_ESP_ROM_HAS_CRC_BE 1
#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1
#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1
#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1
#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3
#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1
#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1
#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1
#define CONFIG_ESP_ROM_GET_CLK_FREQ 1
#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1
#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1
#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1
#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1
#define CONFIG_ESP_ROM_HAS_NEWLIB 1
#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1
#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1
#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1
#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1
#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1
#define CONFIG_ESP_ROM_USB_OTG_NUM -1
#define CONFIG_ESP_ROM_HAS_VERSION 1
#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1
#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1
#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1
#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1
#define CONFIG_ESPTOOLPY_FLASHMODE "dio"
#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1
#define CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT 1
#define CONFIG_ESPTOOLPY_FLASHFREQ "80m"
#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1
#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB"
#define CONFIG_ESPTOOLPY_BEFORE_RESET 1
#define CONFIG_ESPTOOLPY_BEFORE "default_reset"
#define CONFIG_ESPTOOLPY_AFTER_RESET 1
#define CONFIG_ESPTOOLPY_AFTER "hard_reset"
#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200
#define CONFIG_PARTITION_TABLE_SINGLE_APP 1
#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv"
#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv"
#define CONFIG_PARTITION_TABLE_OFFSET 0x8000
#define CONFIG_PARTITION_TABLE_MD5 1
#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1
#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2
#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1
#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1
#define CONFIG_COMPILER_RT_LIB_GCCLIB 1
#define CONFIG_COMPILER_RT_LIB_NAME "gcc"
#define CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE 1
#define CONFIG_EFUSE_MAX_BLK_LEN 256
#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1
#define CONFIG_ESP32C3_REV_MIN_3 1
#define CONFIG_ESP32C3_REV_MIN_FULL 3
#define CONFIG_ESP_REV_MIN_FULL 3
#define CONFIG_ESP32C3_REV_MAX_FULL 199
#define CONFIG_ESP_REV_MAX_FULL 199
#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0
#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1
#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1
#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4
#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR 1
#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES 4
#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1
#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1
#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0
#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1
#define CONFIG_RTC_CLK_SRC_INT_RC 1
#define CONFIG_RTC_CLK_CAL_CYCLES 1024
#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1
#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1
#define CONFIG_XTAL_FREQ_40 1
#define CONFIG_XTAL_FREQ 40
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160
#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1
#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0
#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1
#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1
#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1
#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1
#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1
#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32
#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304
#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584
#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1
#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0
#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048
#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1
#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1
#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1
#define CONFIG_ESP_CONSOLE_UART 1
#define CONFIG_ESP_CONSOLE_UART_NUM 0
#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0
#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200
#define CONFIG_ESP_INT_WDT 1
#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300
#define CONFIG_ESP_TASK_WDT_EN 1
#define CONFIG_ESP_TASK_WDT_INIT 1
#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
#define CONFIG_ESP_DEBUG_OCDAWARE 1
#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1
#define CONFIG_ESP_BROWNOUT_DET 1
#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1
#define CONFIG_ESP_BROWNOUT_DET_LVL 7
#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1
#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1
#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1
#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024
#define CONFIG_FREERTOS_UNICORE 1
#define CONFIG_FREERTOS_HZ 100
#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1
#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1
#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1
#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536
#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc"
#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF
#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1
#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048
#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10
#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0
#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1
#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1
#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1
#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1
#define CONFIG_FREERTOS_ISR_STACKSIZE 1536
#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1
#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1
#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1
#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1
#define CONFIG_FREERTOS_PORT 1
#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF
#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1
#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1
#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1
#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1
#define CONFIG_FREERTOS_NUMBER_OF_CORES 1
#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1
#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2
#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1
#define CONFIG_LOG_DEFAULT_LEVEL 3
#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1
#define CONFIG_LOG_MAXIMUM_LEVEL 3
#define CONFIG_LOG_COLORS 1
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1
#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1
#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1
#define CONFIG_MMU_PAGE_SIZE_64KB 1
#define CONFIG_MMU_PAGE_MODE "64KB"
#define CONFIG_MMU_PAGE_SIZE 0x10000
#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1
#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1
#define CONFIG_SPI_FLASH_SUSPEND_QVL_SUPPORTED 1
#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1
#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1
#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20
#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1
#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192
#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED 1
#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1
#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1
/* List of deprecated options */
#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7
#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG
#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG
#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART
#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT
#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM
#define CONFIG_ESP32C3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
#define CONFIG_ESP32C3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
#define CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7
#define CONFIG_ESP32C3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE
#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160
#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
#define CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND
#define CONFIG_ESP32C3_MEMPROT_FEATURE CONFIG_ESP_SYSTEM_MEMPROT_FEATURE
#define CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK
#define CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES
#define CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC
#define CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT
#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO
#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT
#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS
#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE
#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL
#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO
#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE
#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD
#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL
#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG
#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS
#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE
#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE
#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE
#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0
#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S
#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH
#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY
#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH

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