initial commmit
This commit is contained in:
13
.devcontainer/Dockerfile
Normal file
13
.devcontainer/Dockerfile
Normal 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"]
|
||||||
21
.devcontainer/devcontainer.json
Normal file
21
.devcontainer/devcontainer.json
Normal 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"]
|
||||||
|
}
|
||||||
23
.vscode/c_cpp_properties.json
vendored
Normal file
23
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "ESP-IDF",
|
||||||
|
"compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe",
|
||||||
|
"compileCommands": "${config:idf.buildPath}/compile_commands.json",
|
||||||
|
"includePath": [
|
||||||
|
"${config:idf.espIdfPath}/components/**",
|
||||||
|
"${config:idf.espIdfPathWin}/components/**",
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"browse": {
|
||||||
|
"path": [
|
||||||
|
"${config:idf.espIdfPath}/components",
|
||||||
|
"${config:idf.espIdfPathWin}/components",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"limitSymbolsToIncludedHeaders": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
15
.vscode/launch.json
vendored
Normal file
15
.vscode/launch.json
vendored
Normal 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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
22
.vscode/settings.json
vendored
Normal file
22
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"C_Cpp.intelliSenseEngine": "default",
|
||||||
|
"idf.espIdfPathWin": "c:\\Espressif\\frameworks\\v5.4.1\\esp-idf",
|
||||||
|
"idf.toolsPathWin": "C:\\Espressif\\tools",
|
||||||
|
"idf.pythonInstallPath": "C:\\Espressif\\tools\\tools\\idf-python\\3.11.2\\python.exe",
|
||||||
|
"idf.portWin": "COM20",
|
||||||
|
"idf.openOcdConfigs": [
|
||||||
|
"board/esp32s3-builtin.cfg"
|
||||||
|
],
|
||||||
|
"idf.customExtraVars": {
|
||||||
|
"OPENOCD_SCRIPTS": "C:\\Users\\Dell\\.espressif\\tools\\openocd-esp32\\v0.12.0-esp32-20240318/openocd-esp32/share/openocd/scripts",
|
||||||
|
"IDF_CCACHE_ENABLE": "1",
|
||||||
|
"ESP_ROM_ELF_DIR": "C:\\Users\\Dell\\.espressif\\tools\\esp-rom-elfs\\20240305/",
|
||||||
|
"IDF_TARGET": "esp32s3"
|
||||||
|
},
|
||||||
|
"files.associations": {
|
||||||
|
"hid_usage_keyboard.h": "c",
|
||||||
|
"esp_task_wdt.h": "c",
|
||||||
|
"freertos.h": "c",
|
||||||
|
"task.h": "c"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# The following lines of boilerplate have to be in your project's
|
||||||
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
|
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
|
||||||
|
set(COMPONENTS main)
|
||||||
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
|
get_filename_component(ProjectId ${CMAKE_CURRENT_LIST_DIR} NAME)
|
||||||
|
string(REPLACE " " "_" ProjectId ${ProjectId})
|
||||||
|
project(${ProjectId})
|
||||||
72
README.md
Normal file
72
README.md
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
| Supported Targets | ESP32-P4 | ESP32-S2 | ESP32-S3 |
|
||||||
|
| ----------------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
|
# USB HID Class example
|
||||||
|
This example implements a basic USB Host HID Class Driver, and demonstrates how to use the driver to communicate with USB HID devices (such as Keyboard and Mouse or both) on the ESP32-S2/S3. Currently, the example only supports the HID boot protocol which should be present on most USB Mouse and Keyboards. The example will continuously scan for the connection of any HID Mouse or Keyboard, and attempt to fetch HID reports from those devices once connected. To quit the example (and shut down the HID driver), users can GPIO0 to low (i.e., pressing the "Boot" button on most ESP dev kits).
|
||||||
|
|
||||||
|
|
||||||
|
### Hardware Required
|
||||||
|
* Development board with USB capable ESP SoC (ESP32-S2/ESP32-S3)
|
||||||
|
* A USB cable for Power supply and programming
|
||||||
|
* USB OTG Cable
|
||||||
|
|
||||||
|
### Common Pin Assignments
|
||||||
|
|
||||||
|
If your board doesn't have a USB A connector connected to the dedicated GPIOs,
|
||||||
|
you may have to DIY a cable and connect **D+** and **D-** to the pins listed below.
|
||||||
|
|
||||||
|
```
|
||||||
|
ESP BOARD USB CONNECTOR (type A)
|
||||||
|
--
|
||||||
|
| || VCC
|
||||||
|
[GPIO19] ------> | || D-
|
||||||
|
[GPIO20] ------> | || D+
|
||||||
|
| || GND
|
||||||
|
--
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build and Flash
|
||||||
|
|
||||||
|
Build the project and flash it to the board, then run monitor tool to view serial output:
|
||||||
|
|
||||||
|
```
|
||||||
|
idf.py -p PORT flash monitor
|
||||||
|
```
|
||||||
|
|
||||||
|
The example serial output will be the following:
|
||||||
|
|
||||||
|
```
|
||||||
|
I (198) example: HID HOST example
|
||||||
|
I (598) example: Interface number 0, protocol Mouse
|
||||||
|
I (598) example: Interface number 1, protocol Keyboard
|
||||||
|
|
||||||
|
Mouse
|
||||||
|
X: 000883 Y: 000058 |o| |
|
||||||
|
Keyboard
|
||||||
|
qwertyuiop[]\asdfghjkl;'zxcvbnm,./
|
||||||
|
Mouse
|
||||||
|
X: 000883 Y: 000058 | |o|
|
||||||
|
```
|
||||||
|
|
||||||
|
Where every keyboard key printed as char symbol if it is possible and a Hex value for any other key.
|
||||||
|
|
||||||
|
#### Keyboard input data
|
||||||
|
Keyboard input data starts with the word "Keyboard" and every pressed key is printed to the serial debug.
|
||||||
|
Left or right Shift modifier is also supported.
|
||||||
|
|
||||||
|
```
|
||||||
|
Keyboard
|
||||||
|
Hello, ESP32 USB HID Keyboard is here!
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Mouse input data
|
||||||
|
Mouse input data starts with the word "Mouse" and has the following structure.
|
||||||
|
```
|
||||||
|
Mouse
|
||||||
|
X: -00343 Y: 000183 | |o|
|
||||||
|
| | | |
|
||||||
|
| | | +- Right mouse button pressed status ("o" - pressed, " " - not pressed)
|
||||||
|
| | +--- Left mouse button pressed status ("o" - pressed, " " - not pressed)
|
||||||
|
| +---------- Y relative coordinate of the cursor
|
||||||
|
+----------------------- X relative coordinate of the cursor
|
||||||
|
```
|
||||||
1
build/.bin_timestamp
Normal file
1
build/.bin_timestamp
Normal file
@ -0,0 +1 @@
|
|||||||
|
b3b43abc5045c56ca1a57dd5ef039215 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/Keyboard_lights_2.bin
|
||||||
BIN
build/.ninja_deps
Normal file
BIN
build/.ninja_deps
Normal file
Binary file not shown.
999
build/.ninja_log
Normal file
999
build/.ninja_log
Normal file
@ -0,0 +1,999 @@
|
|||||||
|
# ninja log v6
|
||||||
|
101 157 7695048280227148 project_elf_src_esp32s3.c b8bf4554f8810cb9
|
||||||
|
101 157 7695048280227148 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/project_elf_src_esp32s3.c b8bf4554f8810cb9
|
||||||
|
69 211 7695048280777138 esp-idf/esp_system/ld/memory.ld 313802d90b88feab
|
||||||
|
69 211 7695048280777138 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/ld/memory.ld 313802d90b88feab
|
||||||
|
78 214 7695048280817139 esp-idf/esp_system/ld/sections.ld.in 5ca009d40e7d43c0
|
||||||
|
78 214 7695048280817139 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/ld/sections.ld.in 5ca009d40e7d43c0
|
||||||
|
219 345 7695048280927157 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj e5ae9826414e6ccc
|
||||||
|
226 389 7695048280997155 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 6949de2202fe1ab4
|
||||||
|
234 625 7695048281077145 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj efa747a13aac0b9b
|
||||||
|
264 705 7695048281377143 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 31457e047b38c62a
|
||||||
|
255 717 7695048281287142 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 834146d13e4727eb
|
||||||
|
272 756 7695048281457141 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 63ad4361478c353b
|
||||||
|
214 768 7695048280877151 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 11b1e88a4104724f
|
||||||
|
281 780 7695048281547173 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj c2e980e051df6329
|
||||||
|
390 828 7695048282637152 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 598a3ab94eea347c
|
||||||
|
625 844 7695048284992309 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj c0a3bbd830be330d
|
||||||
|
347 856 7695048282207140 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj 10c2ecf984f8501
|
||||||
|
240 869 7695048281137138 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 8a519c9c89f91f2d
|
||||||
|
705 925 7695048285792322 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 90093bc009faab5e
|
||||||
|
717 943 7695048285912309 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj dab00dfe6948ce73
|
||||||
|
757 994 7695048286312380 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 8045fd310e64ad2c
|
||||||
|
770 1041 7695048286432305 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj 3e84ec8102911200
|
||||||
|
781 1064 7695048286542311 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj 69af6926be524d4a
|
||||||
|
829 1088 7695048287022313 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj 933472b7114fa19a
|
||||||
|
844 1102 7695048287172340 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 4efa8df1d6105f8c
|
||||||
|
856 1119 7695048287302320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj f9714f2ce72dfcd5
|
||||||
|
926 1171 7695048287992308 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 35af8fb928d955a
|
||||||
|
943 1193 7695048288162296 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 80f5f6984cdbc172
|
||||||
|
995 1235 7695048288692360 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 1da8e278ec2aa7e9
|
||||||
|
1042 1254 7695048289152307 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 92ea4fd1aad77752
|
||||||
|
1065 1268 7695048289382329 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj ad1f0f477954058d
|
||||||
|
1089 1322 7695048289622320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj 2df1a684a621bf27
|
||||||
|
1102 1355 7695048289762376 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj e7e9b092533ad432
|
||||||
|
1119 1368 7695048289922327 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj 86e8a87142cdc501
|
||||||
|
1172 1430 7695048290462309 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj ef36ad69aa6ba92a
|
||||||
|
1193 1453 7695048290672325 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj bf0bfb004a5c98f4
|
||||||
|
1235 1537 7695048291092316 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj eb2c36afedaa6865
|
||||||
|
1254 1572 7695048291282292 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj d77bb0942eab055d
|
||||||
|
1268 1589 7695048291412308 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj f20e5a053283d783
|
||||||
|
1324 1613 7695048291972302 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj ac580dd21474d92
|
||||||
|
1355 1630 7695048292292329 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 6eb3f5dc5b0a21c0
|
||||||
|
1368 1680 7695048292412305 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 148aef41e46fc1a5
|
||||||
|
1430 1720 7695048293042316 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj e97c797d6b8d6481
|
||||||
|
1453 1753 7695048293262368 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 83ae58702f30201d
|
||||||
|
1538 1807 7695048294112309 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 453e6765c5841527
|
||||||
|
869 1824 7695048287432317 esp-idf/esp-tls/libesp-tls.a 26002e662d383fa3
|
||||||
|
1572 1887 7695048294462327 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 340a1eeb0f4ff30e
|
||||||
|
1589 1908 7695048294632309 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj fb15af8f02132224
|
||||||
|
1613 1930 7695048294872332 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 6620abf31727249
|
||||||
|
1630 1948 7695048295042312 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 7640e08c2fe0d683
|
||||||
|
1680 1965 7695048295542321 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 8c1aa69a4f33d971
|
||||||
|
1720 2003 7695048295942305 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj 82282d996e320539
|
||||||
|
87 2018 7695048281187171 partition_table/partition-table.bin fae8a9b0c587b21e
|
||||||
|
87 2018 7695048281187171 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/partition_table/partition-table.bin fae8a9b0c587b21e
|
||||||
|
1753 2037 7695048296262335 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj d3fb2628af63f3b6
|
||||||
|
1807 2052 7695048296812363 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 6a450f98d0b20a18
|
||||||
|
1888 2085 7695048297612310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 1872cba4509a15c5
|
||||||
|
1908 2094 7695048297822320 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 84b1f65f2b503b9
|
||||||
|
1930 2139 7695048298032330 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj a63fdab958660377
|
||||||
|
1948 2162 7695048298212315 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj de3b76bd288ba225
|
||||||
|
1965 2190 7695048298392308 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj d29d7c3ac5f1b8b
|
||||||
|
2004 2223 7695048298772310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj feba6f765a29ed65
|
||||||
|
2018 2310 7695048298922303 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 59834b886784bdbe
|
||||||
|
2037 2370 7695048299102309 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 581f2bc9e3e887f1
|
||||||
|
2052 2390 7695048299262301 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj ce5371cc0533d99
|
||||||
|
2085 2476 7695048299582301 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 131a7c5c4941c07b
|
||||||
|
2094 2483 7695048299672307 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj cd10afed43580cb3
|
||||||
|
2139 2491 7695048300122299 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj afacf7ac91c6a5c9
|
||||||
|
2163 2499 7695048300362316 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 406639b9d06ebc25
|
||||||
|
2190 2509 7695048300632304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 28140ab216e9be2e
|
||||||
|
2223 2517 7695048300972319 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj fae1bf065865c014
|
||||||
|
1824 2524 7695048296972315 esp-idf/http_parser/libhttp_parser.a 4a15506c19ac339e
|
||||||
|
2371 2672 7695048302442316 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 7e0995d0c87e839e
|
||||||
|
2311 2685 7695048301852316 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 730c601c86bbbd54
|
||||||
|
2390 2718 7695048302632315 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj cbabff282d65ecb1
|
||||||
|
2517 2735 7695048303902314 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 8ec6f7a681ff402f
|
||||||
|
2491 2750 7695048303652295 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b0fd614a1410ce79
|
||||||
|
2500 2844 7695048303732309 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 80d8966f026a510f
|
||||||
|
2509 2920 7695048303832312 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 9cc620a1673b195
|
||||||
|
2483 2937 7695048303572310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj a4b3f7d87941009b
|
||||||
|
2736 2946 7695048306092315 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 51c289ebcc2130ce
|
||||||
|
2476 2956 7695048303492304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj a5d458fb9d9b4656
|
||||||
|
2672 2966 7695048305452339 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj 49fadaef4cfcccdf
|
||||||
|
2686 2976 7695048305592304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 7e7ab97c79db86ac
|
||||||
|
2718 2987 7695048305922321 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj e7f76c9acd224139
|
||||||
|
2751 3043 7695048306242303 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 83fa142bbbe4bb74
|
||||||
|
2845 3139 7695048307192325 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 7debcaeb350cb8e4
|
||||||
|
2920 3169 7695048307942308 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a353000f9e7d4ea4
|
||||||
|
2956 3209 7695048308292315 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj 4fd4b71902a1cf9f
|
||||||
|
2976 3221 7695048308492346 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 72bfff16a3a44557
|
||||||
|
2937 3269 7695048308102303 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj ef7e27548a502acd
|
||||||
|
2946 3292 7695048308192343 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj cbbc328f1ba9ebd3
|
||||||
|
3043 3323 7695048309162303 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj c288ee80ce4037e5
|
||||||
|
2987 3335 7695048308602318 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj bef73a67d8471cd8
|
||||||
|
3139 3346 7695048310122299 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 2ae73cd8c1f16ec4
|
||||||
|
2966 3400 7695048308402379 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj fc8384ea61f53510
|
||||||
|
3269 3541 7695048311432317 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 4e5551a9c96472ad
|
||||||
|
3169 3627 7695048310422295 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 9d144823b02952a7
|
||||||
|
3209 3651 7695048310822310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj a9ed7634e882684e
|
||||||
|
3323 3667 7695048311962304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj 75edc236dde5975f
|
||||||
|
3292 3710 7695048311662300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj f6b5f0194d703205
|
||||||
|
3222 3778 7695048310952302 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj f3ac6552bb7a45f1
|
||||||
|
3347 3800 7695048312202329 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 35b19d4920abb4e1
|
||||||
|
3335 3815 7695048312092324 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 1a24d4722f5d9857
|
||||||
|
2524 3826 7695048303972311 esp-idf/esp_wifi/libesp_wifi.a 87806db9b95037bb
|
||||||
|
3627 3874 7695048315012302 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 1d81b36e83c27d5c
|
||||||
|
3667 3891 7695048315402300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj c9995e49cd061009
|
||||||
|
3541 3904 7695048314152308 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj ba857b6c674d8d0d
|
||||||
|
3710 3917 7695048315842300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj a7be8c4773295ae4
|
||||||
|
3400 3930 7695048312742304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 70c24f47f6e298b2
|
||||||
|
3652 3984 7695048315252318 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 20a1b9503f33ebf0
|
||||||
|
3874 4021 7695048317477483 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 75ba46b8c9dee632
|
||||||
|
3892 4098 7695048317657458 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj f27e361d829c821a
|
||||||
|
3815 4116 7695048316882331 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj eb6dc3f8cad4b8bc
|
||||||
|
3800 4125 7695048316732369 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj a135e3f04ea56746
|
||||||
|
3778 4161 7695048316522317 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 705666ba8af903e0
|
||||||
|
3904 4169 7695048317777476 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 97f1d8e3e43b9beb
|
||||||
|
3918 4176 7695048317917470 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 3bb270d6357bc6cf
|
||||||
|
3930 4185 7695048318037458 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj dbf07beeedb571d5
|
||||||
|
3985 4194 7695048318597468 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj c63bf074de15d052
|
||||||
|
4021 4202 7695048318947459 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj e9f0b32e1f135b79
|
||||||
|
4098 4283 7695048319717467 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj cfc2e574350290e
|
||||||
|
4116 4292 7695048319897458 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 61afa1bce34f8e45
|
||||||
|
4162 4308 7695048320352644 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj cb611f77661927d3
|
||||||
|
4125 4316 7695048319992611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 9f2760ee09c997d0
|
||||||
|
4194 4340 7695048320672607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj d9659e235ec73e67
|
||||||
|
4169 4348 7695048320432624 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 4d9e09c8045ecb4c
|
||||||
|
4185 4406 7695048320582589 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 2471989c3d19bc1c
|
||||||
|
4176 4464 7695048320502607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 52d9a7f7ea9bdf03
|
||||||
|
4203 4513 7695048320762620 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 59fb82324edc62bd
|
||||||
|
4283 4527 7695048321562615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 649d578cf62c111f
|
||||||
|
4316 4540 7695048321902613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 79b5054f12a5157d
|
||||||
|
4293 4573 7695048321662635 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj bfffdba03e350f74
|
||||||
|
4348 4585 7695048322212621 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 17f53b3ab398e9f1
|
||||||
|
3826 4598 7695048316992311 esp-idf/esp_coex/libesp_coex.a 56dd7cad799a6c96
|
||||||
|
4540 4715 7695048324132656 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj dac1c2eb6d4ad9a3
|
||||||
|
4308 4728 7695048321822603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj ce651c4b3c139bbc
|
||||||
|
4340 4742 7695048322132619 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b79e9e14f0d76a88
|
||||||
|
4406 4760 7695048322802639 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 7e45f70bbe5957e6
|
||||||
|
4573 4779 7695048324462603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 228a08e159a0b0f7
|
||||||
|
4586 4789 7695048324592620 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj f160747f93bd3513
|
||||||
|
4513 4798 7695048323862627 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 56584999dc67323d
|
||||||
|
4464 4808 7695048323382625 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 36827de9d368129d
|
||||||
|
4527 4877 7695048324012616 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 6d22d454c5d9ec4
|
||||||
|
4715 4958 7695048325882612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 15b74aa82dfa6cb
|
||||||
|
4728 4972 7695048326022610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj fcbbf3cc958da8e9
|
||||||
|
4743 4984 7695048326172601 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 2135c1218a5160df
|
||||||
|
4760 5092 7695048326342605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b288ceb36e90a5b9
|
||||||
|
4779 5105 7695048326522602 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj e66f4c8f8d7b6d94
|
||||||
|
4789 5113 7695048326622608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj fed60aab49601e9c
|
||||||
|
4798 5124 7695048326716896 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj c9900e24e81265d5
|
||||||
|
4808 5142 7695048326817782 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj fff3985e910647ba
|
||||||
|
4877 5235 7695048327513418 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 627250a1993bd16c
|
||||||
|
4958 5245 7695048328313387 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj c45bc5eeb7c20a5
|
||||||
|
4973 5257 7695048328463385 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 4106b86fbb279ce7
|
||||||
|
4984 5271 7695048328583385 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj eef2c4894907b794
|
||||||
|
5092 5332 7695048329663416 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj d20ad691ed3fdac7
|
||||||
|
5105 5359 7695048329783392 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj cac1c41f9a289d21
|
||||||
|
5113 5385 7695048329873393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 6557e255ee214b9d
|
||||||
|
5124 5392 7695048329983413 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 51b11d2a204c9e37
|
||||||
|
5142 5403 7695048330153394 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj d210fda518de0492
|
||||||
|
5236 5421 7695048331093388 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 679ca54e2d53448e
|
||||||
|
5245 5481 7695048331183406 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj fb48c62fdfba1355
|
||||||
|
5258 5535 7695048331313378 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 5ae8ac7e81567d8f
|
||||||
|
5271 5546 7695048331453392 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 750dce973cc02bb7
|
||||||
|
5333 5558 7695048332073396 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 7aead6f3f42924df
|
||||||
|
5359 5567 7695048332323387 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 44510c29415b5c15
|
||||||
|
5386 5637 7695048332593375 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj fb4cfcf8f2d6b48f
|
||||||
|
5392 5646 7695048332653396 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 5d2b4ca46fcc9931
|
||||||
|
5403 5657 7695048332763384 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj a43a8261101cab6e
|
||||||
|
5421 5729 7695048332953373 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj cf56272faba57019
|
||||||
|
5481 5740 7695048333553383 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b0ffc627cc6feff2
|
||||||
|
5535 5754 7695048334083404 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 59fc5e8102f4ece5
|
||||||
|
5546 5770 7695048334193386 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 9c89186bcf4f4785
|
||||||
|
5558 5781 7695048334313395 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 30dae8564d7a50e0
|
||||||
|
5568 5800 7695048334413383 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj d4e60d9590cc1928
|
||||||
|
5637 5811 7695048335103385 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj e0080e3801ca9b0a
|
||||||
|
5646 5846 7695048335203393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj 1d3a55e9499f3eb7
|
||||||
|
5658 5869 7695048335313380 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 7540c2ac4d6c2c6e
|
||||||
|
5729 5935 7695048336023379 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj fc7b176a208d006b
|
||||||
|
5740 5953 7695048336143393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj 51722dd5b693e993
|
||||||
|
4598 5964 7695048324722612 esp-idf/wpa_supplicant/libwpa_supplicant.a 58031407dc18b3ae
|
||||||
|
5754 5975 7695048336273437 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj ed992dfc8d0980e5
|
||||||
|
5770 5990 7695048336443878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj fc411d1a49959e08
|
||||||
|
5781 6007 7695048336553688 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj bc8e6c7ebac3bd4b
|
||||||
|
5800 6023 7695048336733680 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 287136d9e5e1217b
|
||||||
|
5812 6035 7695048336853689 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 2bb3a0173e7aeacf
|
||||||
|
5846 6050 7695048337203690 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 39932af181a8df06
|
||||||
|
5869 6058 7695048337423673 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 691de74f7dc838ee
|
||||||
|
5935 6095 7695048338083941 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj e9560ef2b980ba62
|
||||||
|
5953 6107 7695048338263977 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj de6ecbd71ba2ec60
|
||||||
|
5964 6125 7695048338373966 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj ad1c71da26533980
|
||||||
|
5975 6160 7695048338483962 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 7b1dd330972bd396
|
||||||
|
5991 6185 7695048338643936 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj a7ce46a5e1d706e9
|
||||||
|
6007 6232 7695048338803950 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 585f40015400f223
|
||||||
|
6023 6261 7695048338963956 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj a7f8858950a88312
|
||||||
|
6035 6276 7695048339093949 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj be37537828cc73f5
|
||||||
|
6050 6324 7695048339233937 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 17b0441cea77f003
|
||||||
|
6058 6342 7695048339313953 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj e1da3eb7c87d6b53
|
||||||
|
6095 6362 7695048339689065 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj c02a62f3c317aa99
|
||||||
|
6107 6386 7695048339809063 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 53f01742b748deeb
|
||||||
|
6125 6397 7695048339989149 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj 7e2d15b81ae658f1
|
||||||
|
6160 6407 7695048340339062 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 4de981fb5cbbe791
|
||||||
|
6186 6420 7695048340589055 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 4a3757e339bcdd4a
|
||||||
|
6233 6429 7695048341069068 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj 927eaa50fb101c14
|
||||||
|
6261 6455 7695048341349059 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj 96c5e9cb06321e2d
|
||||||
|
6277 6524 7695048341499062 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj d13210009ba417dc
|
||||||
|
6343 6540 7695048342169061 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 2a15192cf281bfa9
|
||||||
|
6362 6558 7695048342359070 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj db6162585d60095d
|
||||||
|
6325 6566 7695048341999068 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 7fb3920cea0d6920
|
||||||
|
6420 6619 7695048342939338 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj f4aafaf006ec9de7
|
||||||
|
6407 6634 7695048342809335 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj 780e3558686e0338
|
||||||
|
6429 6661 7695048343029325 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 2d39833acb76810f
|
||||||
|
6386 6684 7695048342589063 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj 5d9390763eaa1d36
|
||||||
|
6398 6706 7695048342709060 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj e3e7d72085f2e317
|
||||||
|
6540 6725 7695048344134791 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 4723e80e2771169b
|
||||||
|
6524 6739 7695048343979355 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj abf6535551233f2e
|
||||||
|
6566 6786 7695048344394796 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj d8c810e923885f2c
|
||||||
|
6620 6797 7695048344934777 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj 4efd779467f9d2a8
|
||||||
|
6558 6829 7695048344314780 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 557d801ff3bcdea4
|
||||||
|
6634 6850 7695048345074886 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 4a6943ddf063f550
|
||||||
|
6684 6875 7695048345579986 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 6e6092febf4718d8
|
||||||
|
6661 6892 7695048345344778 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 51424806bb8542d2
|
||||||
|
6787 6964 7695048346605116 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 25a59a4148fedcdd
|
||||||
|
6797 6999 7695048346715126 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 90f8240b697159a
|
||||||
|
6725 7010 7695048345985136 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32s3/phy_init_data.c.obj b9b15fdd1502ebb1
|
||||||
|
6829 7020 7695048347035120 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj a61e431f5aedcd8a
|
||||||
|
6740 7037 7695048346135123 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b89a5969b308373e
|
||||||
|
6706 7047 7695048345805120 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj e6405963681d23aa
|
||||||
|
6850 7067 7695048347235129 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 577e160d302e37d5
|
||||||
|
6875 7081 7695048347485126 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 9e5ee1d3f9ee022f
|
||||||
|
6892 7095 7695048347655143 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj 6b2c3619c50d17b3
|
||||||
|
6964 7110 7695048348375131 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 32c8e0bb155a51ec
|
||||||
|
6455 7127 7695048343289368 esp-idf/esp_netif/libesp_netif.a 9e205a8962d2b8dd
|
||||||
|
6999 7168 7695048348725133 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b099a8f2a292da7d
|
||||||
|
7010 7180 7695048348835122 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 59be2f04c3421762
|
||||||
|
7020 7241 7695048348945136 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 5cb323276ff86495
|
||||||
|
7037 7276 7695048349105140 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj f0702722479e2b29
|
||||||
|
7048 7306 7695048349215132 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj e211af8f169cf3b3
|
||||||
|
7067 7321 7695048349415124 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 242822cfd68808d6
|
||||||
|
7081 7335 7695048349555128 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj f79ece1d2c6ba54e
|
||||||
|
7095 7356 7695048349685116 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 47d95c4e944cc428
|
||||||
|
7110 7371 7695048349845191 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj 6e99cc6bee0faf1f
|
||||||
|
7169 7430 7695048350425133 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj e99d644ca6545296
|
||||||
|
7180 7478 7695048350555134 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj 82ec1502643f20da
|
||||||
|
7242 7486 7695048351155183 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj 9a31278bec926910
|
||||||
|
7306 7496 7695048351795121 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 6d85e790156403b
|
||||||
|
7322 7569 7695048351955132 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj c78b0899adfdeb44
|
||||||
|
7276 7576 7695048351495122 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 741404abdfa6f5ba
|
||||||
|
7336 7657 7695048352095133 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj f1e2ade4bcfa5838
|
||||||
|
7569 7721 7695048354430242 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj 82f0d1c5042eb843
|
||||||
|
7371 7738 7695048352445126 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj 15de49638b3f7155
|
||||||
|
7576 7754 7695048354500224 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 39a11d29a9894349
|
||||||
|
7356 7763 7695048352295118 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj bc1250cdfcc9a7de
|
||||||
|
7431 7779 7695048353055171 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 98fd4352b33e05e4
|
||||||
|
7486 7819 7695048353595111 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj 2b624c61628d3373
|
||||||
|
7496 7836 7695048353695129 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj d70648d5096b1721
|
||||||
|
7657 7845 7695048355310238 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj 14bce368399b8ca5
|
||||||
|
7478 7865 7695048353515118 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj 356eb698fda254b4
|
||||||
|
7722 7874 7695048355950221 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj 7eb01ca2b6f89165
|
||||||
|
7738 7900 7695048356120221 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 455b8db308f215a7
|
||||||
|
7755 7914 7695048356280235 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj 94a506acb4927c8b
|
||||||
|
7763 7924 7695048356370226 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 24258d1c28645e9c
|
||||||
|
7779 7936 7695048356520248 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 2b5499f290d44366
|
||||||
|
7865 8022 7695048357380224 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 1b698e371a2c7a23
|
||||||
|
7819 8063 7695048356930228 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b9652d905aa069e1
|
||||||
|
7845 8095 7695048357190214 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj 75354820d74de36f
|
||||||
|
7836 8107 7695048357100327 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b40179b30c508005
|
||||||
|
7914 8124 7695048357870227 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj 1fd6eb83d7dcf2d5
|
||||||
|
7936 8135 7695048358090634 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj 59277b290b47275e
|
||||||
|
7924 8142 7695048357980252 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj bd6ed8a0883923ac
|
||||||
|
7901 8148 7695048357740239 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj ad35a8ac549ee852
|
||||||
|
7875 8235 7695048357480244 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj 6ff15e637bdbb671
|
||||||
|
8095 8291 7695048359695712 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj 2b90a41445c5c56
|
||||||
|
8107 8310 7695048359815709 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj aec1a8ae2a4ad8
|
||||||
|
8124 8320 7695048359975699 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b9e727393b55e491
|
||||||
|
8135 8330 7695048360085701 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 8f882781c31d61bd
|
||||||
|
8023 8337 7695048358965691 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj dae611d43c53f772
|
||||||
|
8143 8351 7695048360165701 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 2072ed22d2b6a52b
|
||||||
|
8149 8392 7695048360225695 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj 2acb160efeb337b7
|
||||||
|
8063 8413 7695048359365697 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj c2a8840b076f4d2d
|
||||||
|
8238 8424 7695048361115703 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj f942d6ddcb0b09f0
|
||||||
|
8291 8435 7695048361655710 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 27d1ad98964452f
|
||||||
|
8310 8444 7695048361835695 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj 4d68e253b39ddf22
|
||||||
|
8320 8473 7695048361935721 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj f4956ac86e5ffebc
|
||||||
|
8330 8498 7695048362035694 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj 350450c509c362cf
|
||||||
|
7127 8506 7695048350005123 esp-idf/lwip/liblwip.a 6091722e38c4c9b6
|
||||||
|
8337 8528 7695048362105695 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj f00bbfe7aa524eab
|
||||||
|
8351 8568 7695048362245702 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj e15b878dd2e43e26
|
||||||
|
8392 8576 7695048362655687 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 3ca175ccd9b2fa02
|
||||||
|
8413 8585 7695048362865696 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj a5db06f4ac6ce0d3
|
||||||
|
8435 8612 7695048363085706 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 8814bd236434a57b
|
||||||
|
8473 8648 7695048363465705 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj afa2cbfa0413fbad
|
||||||
|
8445 8678 7695048363185699 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 5c854e16d8c14024
|
||||||
|
8498 8694 7695048363721089 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj d589f015c0c32fa3
|
||||||
|
8425 8702 7695048362985711 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 5af13ca64e284377
|
||||||
|
8587 8745 7695048364611078 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 8603ac24f15a0f11
|
||||||
|
8576 8755 7695048364501072 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj f3e388fa25a1b76c
|
||||||
|
8678 8821 7695048365516197 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj fce4fc1628617f5e
|
||||||
|
8568 8834 7695048364421081 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 2c80491fa19f69
|
||||||
|
8529 8920 7695048364021088 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj eb1c077f7e752113
|
||||||
|
8648 8929 7695048365221074 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 4f3971a9a0c302ff
|
||||||
|
8694 8936 7695048365676202 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj 81ee7701928569f0
|
||||||
|
8745 8947 7695048366186198 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 72854afee0aa102d
|
||||||
|
8612 9008 7695048364861137 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj aa220d58f8946d6c
|
||||||
|
8929 9037 7695048368026495 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj d26ff51044c62fac
|
||||||
|
8755 9044 7695048366286198 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 9c6ffb6e6670345f
|
||||||
|
8834 9057 7695048367076499 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 7d3e7db5564b5fc5
|
||||||
|
8821 9066 7695048366946495 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj d5050e2d57fae481
|
||||||
|
8936 9109 7695048368096480 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 7d597e24a3a662ab
|
||||||
|
8702 9139 7695048365756220 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj 8b5e3eca4e08448e
|
||||||
|
8947 9156 7695048368206485 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 4e0fc7bd065de1ab
|
||||||
|
9008 9167 7695048368816478 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj bba6fd544375680
|
||||||
|
9037 9176 7695048369106495 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 53a0bef5b0b172eb
|
||||||
|
9044 9188 7695048369176483 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj ae611155babfd2a4
|
||||||
|
9057 9239 7695048369306487 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 2bff004c15a51250
|
||||||
|
8921 9281 7695048367946489 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b2520eebb841f209
|
||||||
|
9066 9292 7695048369396498 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj ea0e691b120e3562
|
||||||
|
9113 9307 7695048369866473 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 82f9ee67e2e3a340
|
||||||
|
9139 9317 7695048370126503 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj 2319ed4228112674
|
||||||
|
9156 9327 7695048370296503 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 45227eb49d2c3df8
|
||||||
|
9168 9339 7695048370416494 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj a19da6afb5ee038a
|
||||||
|
9176 9352 7695048370496474 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 7fef5fdf8e561dd8
|
||||||
|
9189 9360 7695048370626486 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 5e27ff22479b83ed
|
||||||
|
9239 9377 7695048371126489 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj b8d92d285a04ea1b
|
||||||
|
8506 9389 7695048363801084 esp-idf/vfs/libvfs.a fbf6869606e22973
|
||||||
|
9281 9445 7695048371546494 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj 3a110802e5c6987b
|
||||||
|
9292 9457 7695048371656483 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 56280f5cf21db6b0
|
||||||
|
9307 9476 7695048371806500 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 23382a722573e60f
|
||||||
|
9317 9495 7695048371906502 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj fe4deb233c1fffba
|
||||||
|
9327 9509 7695048372006486 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 7915d3c545ebcd4c
|
||||||
|
9339 9547 7695048372126529 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 849f3f651c410d53
|
||||||
|
9352 9556 7695048372256491 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj adb9e763a5ea08cb
|
||||||
|
9361 9563 7695048372346510 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 902283ef70268b02
|
||||||
|
9377 9573 7695048372506490 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj 7cbd6bf337d3a416
|
||||||
|
9445 9581 7695048373186509 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj 9834e6f279ab3087
|
||||||
|
9457 9591 7695048373306490 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj abc1437e8d72cf83
|
||||||
|
9476 9598 7695048373496510 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj ee7af33d3656a874
|
||||||
|
9509 9641 7695048373831650 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 8d8f8bb806c816f6
|
||||||
|
9573 9674 7695048374466754 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 94e99c8987ae5a20
|
||||||
|
9598 9712 7695048374716750 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 2db64b49046732a9
|
||||||
|
9495 9727 7695048373686491 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj cfa003479f8e3c65
|
||||||
|
9581 9746 7695048374546768 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 88f6e22301372ad9
|
||||||
|
9591 9762 7695048374646799 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 2dc2f2f31a5eec6f
|
||||||
|
9563 9775 7695048374366762 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj cfae06e014318ebb
|
||||||
|
9642 9827 7695048375146764 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj de8df3acc80564af
|
||||||
|
9557 9844 7695048374306754 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj ee8db903fae2dc9c
|
||||||
|
9547 9867 7695048374206772 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 50327a40db6c17cc
|
||||||
|
9712 9877 7695048375856750 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj 92c1e5b03ae633f4
|
||||||
|
9674 9893 7695048375476822 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 3369615993079795
|
||||||
|
9727 9903 7695048376006750 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj 1cc3ddf921c4fa71
|
||||||
|
9747 9916 7695048376206877 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj ed1ac181c442d5a4
|
||||||
|
9762 9927 7695048376356758 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 9ca952c511641c0c
|
||||||
|
9777 9936 7695048376506765 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj bc88d1b56181aaa6
|
||||||
|
9827 9971 7695048377006764 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 3b225c919d251fd9
|
||||||
|
9390 9978 7695048372636495 esp-idf/esp_vfs_console/libesp_vfs_console.a 140a1aa73c64b438
|
||||||
|
9844 9997 7695048377256770 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 2b3db246efd553d9
|
||||||
|
9867 10007 7695048377406794 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj b2f6d8cfe5e04704
|
||||||
|
9893 10016 7695048377666780 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 1b61024b37a3f124
|
||||||
|
9903 10028 7695048377766759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b9f7537d915a6ed8
|
||||||
|
9917 10068 7695048377906768 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj ea839a66a4eb2b87
|
||||||
|
9928 10077 7695048378006754 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 2fd5b36d4eca24d4
|
||||||
|
9971 10092 7695048378446750 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 3ea9bfaf34f1588d
|
||||||
|
10007 10106 7695048378806760 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 7a4acdb77ba689fe
|
||||||
|
9877 10121 7695048377506757 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj bf9b9ca5e8cf9cf8
|
||||||
|
9936 10128 7695048378096756 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj ce0b51e0e7a86103
|
||||||
|
9997 10139 7695048378706764 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj f0fedf24614cb97a
|
||||||
|
10069 10178 7695048379426763 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj e54c097d8d0c5f0b
|
||||||
|
10028 10203 7695048379016768 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 7ff89b31e32583d5
|
||||||
|
10017 10258 7695048378906769 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj f515686b29b0378f
|
||||||
|
10092 10266 7695048379656772 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj f89ea552ebc68ad6
|
||||||
|
10078 10273 7695048379516761 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 779714e2830426b9
|
||||||
|
10106 10370 7695048379796757 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b964f57776cf48d6
|
||||||
|
10121 10382 7695048379946768 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 6bd2adff2a48a05e
|
||||||
|
10203 10403 7695048380766823 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 8837a884bdca43d4
|
||||||
|
10259 10461 7695048381326786 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 4db29b5ab0e34b54
|
||||||
|
10139 10476 7695048380126760 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj 5bf6543e3950bbb5
|
||||||
|
10128 10488 7695048380016751 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 7240db1d12c9fc2e
|
||||||
|
10178 10519 7695048380516753 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj 31fc5f9e16deb80b
|
||||||
|
10461 10583 7695048383356759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 31cc9956858628e6
|
||||||
|
10274 10596 7695048381476772 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 7445ab620ae419ab
|
||||||
|
10266 10606 7695048381396766 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj 1df479badf5c2785
|
||||||
|
10370 10615 7695048382436759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 4894470dfc795443
|
||||||
|
10477 10637 7695048383506759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj c2a4b2e69591b195
|
||||||
|
10382 10647 7695048382556756 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj 54bf65af809bfc94
|
||||||
|
10403 10657 7695048382766775 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 95cd69cb9ddbcf98
|
||||||
|
10488 10666 7695048383616743 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 261e2f40b773a5e0
|
||||||
|
10519 10676 7695048383926752 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 247775b4fdbc114c
|
||||||
|
10583 10685 7695048384566791 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj fcb23a25e1d9c9ee
|
||||||
|
10596 10702 7695048384696756 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj 8b311ecfa4118856
|
||||||
|
10647 10737 7695048385206754 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 165e330cf6e6c346
|
||||||
|
10606 10831 7695048384796804 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_by_mspi_delay.c.obj dac9e092e30bd8bb
|
||||||
|
10702 10841 7695048385756773 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj 777f656841ee8be1
|
||||||
|
10666 10854 7695048385396772 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 69c314fbde53611a
|
||||||
|
9978 10866 7695048378516755 esp-idf/esp_phy/libesp_phy.a 8492166d975449b6
|
||||||
|
10676 10903 7695048385496764 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 3e6656f1b4dab3b4
|
||||||
|
10685 10916 7695048385586773 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj 27a1a4336a5c581d
|
||||||
|
10638 10926 7695048385116799 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 63f58ca78f95592
|
||||||
|
10616 10936 7695048384896781 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj 5eb504427d18fc14
|
||||||
|
10657 10949 7695048385306778 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj 1634661aa41a5e14
|
||||||
|
10737 10958 7695048386106753 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj 509d49581efa5af3
|
||||||
|
10831 10969 7695048387046770 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/mspi_timing_config.c.obj 4f0c6d034d2dd8b5
|
||||||
|
10842 10977 7695048387156749 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj 67b011f19d6e8439
|
||||||
|
10854 10984 7695048387276753 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj 6f1046f663ebbb9c
|
||||||
|
10903 11022 7695048387766759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj 185f901ecf339a6
|
||||||
|
10917 11049 7695048387906767 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 942d7d9ebb3acb92
|
||||||
|
10926 11094 7695048387996757 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj 6525cf6b60f04043
|
||||||
|
10937 11148 7695048388106751 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj cae1998ca294cb8d
|
||||||
|
10949 11157 7695048388226785 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 4ff63874c0d8a1b3
|
||||||
|
10959 11164 7695048388326755 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 7392460272a17567
|
||||||
|
10970 11171 7695048388426765 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 9146ed0c1377c06e
|
||||||
|
10977 11178 7695048388506829 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj c4b1d78cb0d9c4f4
|
||||||
|
10984 11184 7695048388576764 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj 78bbb4438c77de0b
|
||||||
|
11022 11192 7695048388956759 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj c7022ea30d028407
|
||||||
|
11049 11201 7695048389226753 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 684b812a87c6d580
|
||||||
|
11095 11210 7695048389686810 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj 416a8f1073c8e059
|
||||||
|
11149 11291 7695048390226756 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj 8f20a61da7ff5770
|
||||||
|
11157 11310 7695048390306755 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj c53addbf8f997d1f
|
||||||
|
11164 11317 7695048390376759 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj 99ed995e79f887a1
|
||||||
|
11171 11372 7695048390446759 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj f18280b2f90c26ea
|
||||||
|
11178 11383 7695048390516747 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 951e3f2b38806a84
|
||||||
|
11184 11391 7695048390576765 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj d1187112e6cd3547
|
||||||
|
11192 11397 7695048390656774 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj 766d22ed849fcd15
|
||||||
|
11202 11405 7695048390756764 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj dd4d02543b218450
|
||||||
|
11210 11412 7695048390836753 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj f761279a957c0a5f
|
||||||
|
11295 11418 7695048391696752 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj be8af4234b3fbe82
|
||||||
|
11310 11426 7695048391836746 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj bd709f5a78c071c7
|
||||||
|
11318 11434 7695048391906752 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 43f1069ad38b1ea2
|
||||||
|
11372 11443 7695048392456750 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj 8aa5991b411d19b4
|
||||||
|
10866 11449 7695048387396749 esp-idf/driver/libdriver.a dadea364369cfe30
|
||||||
|
11391 11481 7695048392646759 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj d7bb6a06af253ded
|
||||||
|
11398 11490 7695048392706741 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj c27d9760bc689ba2
|
||||||
|
11383 11498 7695048392566763 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj 4cc4ca638fd1ab3f
|
||||||
|
11405 11523 7695048392786755 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj 75951c1946c402b6
|
||||||
|
11418 11532 7695048392916763 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj 67bda904c5f97c63
|
||||||
|
11412 11543 7695048392856754 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj 6a74a5bd7b58d8a1
|
||||||
|
11427 11564 7695048392996774 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b4a52c0adc73fe66
|
||||||
|
11443 11584 7695048393166784 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 8ca1d2d7057cd1f0
|
||||||
|
11434 11595 7695048393076758 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 82577e96e404f5ba
|
||||||
|
11481 11609 7695048393546809 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 8a5610748a73ff1c
|
||||||
|
11498 11662 7695048393716760 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj aa50b2d978e38617
|
||||||
|
11595 11706 7695048394686797 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj a4c9a2953f0b3a1d
|
||||||
|
11609 11746 7695048394826772 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 93efdbd22c3dfc66
|
||||||
|
11490 11764 7695048393636767 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj dd78e09eb6433a0
|
||||||
|
11532 11774 7695048394056753 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj be5a28c0b098672
|
||||||
|
11662 11790 7695048395356765 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 4f1999ca0308b599
|
||||||
|
11564 11798 7695048394376749 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj cd49419e7955d046
|
||||||
|
11524 11819 7695048393976756 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj a20aca7fc1201e40
|
||||||
|
11584 11829 7695048394576758 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj f41b8e38d8575f1c
|
||||||
|
11543 11836 7695048394166772 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 426fc41b67c947e4
|
||||||
|
11706 11847 7695048395796749 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj e7e16ee0162c3312
|
||||||
|
11747 11871 7695048396206748 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj 64f8d64ca96b483f
|
||||||
|
11764 11878 7695048396376756 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj a40174b1b9d2a22c
|
||||||
|
11774 11892 7695048396476772 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f8008b07fc28184d
|
||||||
|
11790 11900 7695048396636765 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 6bf249a0d2521388
|
||||||
|
11798 11922 7695048396716764 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj c8a7ed93eace193
|
||||||
|
11820 11943 7695048396926767 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj 71655809dd6643a6
|
||||||
|
11829 11950 7695048397026773 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 92006e30be63b013
|
||||||
|
11836 11965 7695048397096760 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 17066d2653e43e59
|
||||||
|
11847 11980 7695048397206754 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj d3563b099cff471e
|
||||||
|
11871 12011 7695048397446782 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj e79cb1c3373baf80
|
||||||
|
11879 12018 7695048397526755 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 77b94b1fbd349fd5
|
||||||
|
11892 12031 7695048397656759 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj c9f842378b9bec0f
|
||||||
|
11900 12045 7695048397736752 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj 291e6479d1a4ccd7
|
||||||
|
11922 12066 7695048397956777 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj dca00cedf5eae549
|
||||||
|
11943 12077 7695048398166752 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 7eacd676c1e695d9
|
||||||
|
11950 12087 7695048398236755 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj a053a1a76c0cf869
|
||||||
|
11965 12105 7695048398386760 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj c07edadf7e51c005
|
||||||
|
11981 12115 7695048398536756 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj f31f1b4dcd677788
|
||||||
|
12011 12131 7695048398846765 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj cb76e6cef3112358
|
||||||
|
12018 12144 7695048398916776 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 90eb06140bfe1880
|
||||||
|
12031 12154 7695048399046767 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj fbf3d11af2e74739
|
||||||
|
11449 12166 7695048393226821 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a 6193d20c804052d4
|
||||||
|
12045 12219 7695048399186764 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 1ab1aa0cb31545a
|
||||||
|
12066 12230 7695048399396777 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 5b687f2fe61667f0
|
||||||
|
12077 12240 7695048399506767 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 96d5828974009bfd
|
||||||
|
12087 12248 7695048399606772 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj 22474792d3c1837f
|
||||||
|
12105 12261 7695048399786768 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj c56e625ddd901f91
|
||||||
|
12115 12268 7695048399886761 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 726305a77e46ec1e
|
||||||
|
12132 12341 7695048400046790 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 3601f11bee8ccf89
|
||||||
|
12144 12382 7695048400176756 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj 3bebcecbea84b13a
|
||||||
|
12154 12396 7695048400276789 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj 96aaa7d0e1cdcf36
|
||||||
|
12221 12411 7695048400946770 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 6580a441d840c8c2
|
||||||
|
12230 12417 7695048401036759 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj da130a4aaa50f1f7
|
||||||
|
12240 12424 7695048401136754 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj 8e348d2bc1997994
|
||||||
|
12249 12430 7695048401226771 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 4965ccea7556a96e
|
||||||
|
12261 12437 7695048401346765 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 29ab17d658495513
|
||||||
|
12269 12445 7695048401426771 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj c6ae0f1af1a7f8f8
|
||||||
|
12341 12454 7695048402146758 esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj 818d683ae604813a
|
||||||
|
12382 12462 7695048402556759 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj 96148779279bb01c
|
||||||
|
12396 12484 7695048402696761 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj a199d0da88e09b34
|
||||||
|
12424 12564 7695048402976751 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 8b54906bf174630f
|
||||||
|
12462 12571 7695048403356752 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj cc24d62b2ae6861d
|
||||||
|
12446 12579 7695048403196835 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj c83e05e38c40ef8a
|
||||||
|
12411 12587 7695048402846754 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 8f1f8784dc6a35d9
|
||||||
|
12417 12616 7695048402906741 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 9ec783f334ea1b5f
|
||||||
|
12484 12627 7695048403576754 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj d58b7a06209352d
|
||||||
|
12454 12677 7695048403276767 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj 11b6246756ae5865
|
||||||
|
12438 12685 7695048403116789 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj fe6bffb0db885023
|
||||||
|
12588 12696 7695048404616774 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj 9a9bfba8cdb5eb1e
|
||||||
|
12430 12702 7695048403036770 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 8c757172919091a8
|
||||||
|
12572 12710 7695048404456754 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 1af3711aed313245
|
||||||
|
12564 12718 7695048404376761 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 8d4db3c60467cb41
|
||||||
|
12580 12724 7695048404536760 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj 9db54da80ae0b170
|
||||||
|
12616 12733 7695048404896767 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj 9e4b33488528b36a
|
||||||
|
12627 12805 7695048405006767 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj ffd40df12870b8bd
|
||||||
|
12702 12827 7695048405757047 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 6fe9b6cb1a440473
|
||||||
|
12677 12835 7695048405506742 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj 99028b02bbd21aa7
|
||||||
|
12686 12843 7695048405596764 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj 92a2af3c7b99b475
|
||||||
|
12711 12857 7695048405847048 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj caae6368a63f75c6
|
||||||
|
12718 12866 7695048405917027 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj fae8be439e4e19b1
|
||||||
|
12724 12873 7695048405977033 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 611cd92450a07b5
|
||||||
|
12696 12882 7695048405697035 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 481932f12499d2b4
|
||||||
|
12733 12902 7695048406067030 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj e7771a8c95f9f63d
|
||||||
|
12166 12913 7695048400396771 esp-idf/esp_driver_ledc/libesp_driver_ledc.a 6f9942ee64c8ba6
|
||||||
|
12805 12936 7695048406787022 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 8495249985453859
|
||||||
|
12827 12946 7695048407007023 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 4d2e3b69c426f0ee
|
||||||
|
12835 12952 7695048407087034 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 19e0bf70f1ba8b5b
|
||||||
|
12844 12962 7695048407167029 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj d8746a9161a33c8a
|
||||||
|
12866 12971 7695048407397024 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj 4b1f6c7f5a1eb3b0
|
||||||
|
12883 12993 7695048407557013 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 3575bdc5a5d10fbd
|
||||||
|
12857 13031 7695048407307016 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj ca3c7222efb95f7c
|
||||||
|
12936 13047 7695048408097071 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj bc88e700e4c58f8d
|
||||||
|
12874 13081 7695048407477026 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj a44db39b33323b00
|
||||||
|
12993 13114 7695048408667025 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 4fffc5a780f4cb50
|
||||||
|
13081 13157 7695048409547018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 17758969dbe793cc
|
||||||
|
12946 13164 7695048408197014 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 376bd0e1ee497348
|
||||||
|
12962 13174 7695048408357052 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 8c685ed833b00635
|
||||||
|
12902 13187 7695048407757046 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 867d8b9d83472a1d
|
||||||
|
12952 13201 7695048408257038 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj f35aa46152727912
|
||||||
|
13047 13209 7695048409207021 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj a66556982ea2fe
|
||||||
|
13114 13215 7695048409877025 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 34c14f1396a60f6f
|
||||||
|
12971 13222 7695048408447021 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 28d58e861fea14d3
|
||||||
|
13032 13230 7695048409057018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj 4d15626ee2273d33
|
||||||
|
13157 13256 7695048410307012 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj 8eb3b6187ab3f037
|
||||||
|
13174 13343 7695048410477024 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 5325ae930acdbca8
|
||||||
|
13209 13364 7695048410827034 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj c8e130928674bc3
|
||||||
|
13187 13372 7695048410607022 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj e6f35f656ecc518a
|
||||||
|
13256 13384 7695048411297018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj 813bbbef40880f30
|
||||||
|
13230 13430 7695048411037018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj 2c01aa9f23bb5d6c
|
||||||
|
13223 13441 7695048410967021 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj f1cb7917c96b2b9c
|
||||||
|
13164 13450 7695048410377018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj f9deda223a6e171a
|
||||||
|
13201 13465 7695048410747009 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 8eb35fc864663631
|
||||||
|
13385 13473 7695048412587014 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj a3bdb1be966b0431
|
||||||
|
13215 13481 7695048410887024 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 1eebab5ba10f924f
|
||||||
|
13344 13494 7695048412177028 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 8eec4f7f563c80d1
|
||||||
|
13364 13500 7695048412377018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b87ad141f385b4fe
|
||||||
|
12913 13507 7695048407867017 esp-idf/esp_driver_uart/libesp_driver_uart.a 755af09a90f6c57e
|
||||||
|
13441 13532 7695048413147035 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj c22718592317aed8
|
||||||
|
13373 13568 7695048412467032 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj cf9433ac028e375f
|
||||||
|
13466 13592 7695048413397086 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj 1e073caba1bb5860
|
||||||
|
13473 13601 7695048413472165 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj fee3389d87902ee8
|
||||||
|
13481 13657 7695048413542156 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj 332a17d7baa20668
|
||||||
|
13494 13694 7695048413672171 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj c12f2349eb9cd1f
|
||||||
|
13500 13704 7695048413732162 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj a8f3009908b41d84
|
||||||
|
13532 13710 7695048414062169 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj 91dcbfe35d88015b
|
||||||
|
13568 13718 7695048414412156 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj 12c2416ffe52d4b5
|
||||||
|
13430 13726 7695048413037013 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj c51d20fc11e9169f
|
||||||
|
13451 13733 7695048413247027 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 50907945abdff7d5
|
||||||
|
13592 13740 7695048414652170 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj d0a8c4d7708920d
|
||||||
|
13657 13858 7695048415312165 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj d1a601ab0bc65df1
|
||||||
|
13718 13869 7695048415912181 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj bf318ea82c0c7c80
|
||||||
|
13694 13880 7695048415682185 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj a323ac8ce14d2fd3
|
||||||
|
13733 13901 7695048416072166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj e6cb1ad919716fc0
|
||||||
|
13741 13911 7695048416142170 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj f2cb847314032136
|
||||||
|
13601 13918 7695048414752174 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj ab4e464ac524ee6a
|
||||||
|
13711 13929 7695048415842175 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 490e8eff09bcd10c
|
||||||
|
13726 13938 7695048415992160 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj a8420487a889840e
|
||||||
|
13858 13945 7695048417322166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 6a9fc150431fd0d3
|
||||||
|
13704 13954 7695048415772214 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj b2f2d648fdec2734
|
||||||
|
13880 13968 7695048417532166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj cac991449d697c8a
|
||||||
|
13901 14002 7695048417752169 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj e6117550eb27d147
|
||||||
|
13869 14017 7695048417432186 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 8d6799bf8352010c
|
||||||
|
13912 14028 7695048417852166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 2edc51bd640c6962
|
||||||
|
13945 14074 7695048418182174 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj a490d92e1c023965
|
||||||
|
13930 14082 7695048418032166 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 38c74495796e4fe5
|
||||||
|
13919 14099 7695048417922182 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj af5fc89f8875eab0
|
||||||
|
14029 14138 7695048419022163 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj 371177165275fa2e
|
||||||
|
13955 14197 7695048418282189 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj c399f5b4f273387
|
||||||
|
14002 14215 7695048418752167 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b6e61e98456ad0de
|
||||||
|
13968 14225 7695048418422172 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 862e017d410cfee8
|
||||||
|
14138 14234 7695048420112234 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj f19d64c0b8b39d30
|
||||||
|
13507 14242 7695048413812179 esp-idf/esp_driver_i2c/libesp_driver_i2c.a c0ee184563ea17ef
|
||||||
|
14074 14253 7695048419482160 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj 56e347078908ace5
|
||||||
|
13938 14261 7695048418112199 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b100c82b5f704843
|
||||||
|
14017 14267 7695048418902186 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj ded1272e35582687
|
||||||
|
14099 14275 7695048419732175 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj bd7f8271fc9e5890
|
||||||
|
14082 14283 7695048419562177 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj 3f3c916de9f4ef9a
|
||||||
|
14197 14356 7695048420702176 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 4db34d0e8779f2c0
|
||||||
|
14215 14364 7695048420892230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 28787d4e5b7ac8da
|
||||||
|
14226 14371 7695048420992170 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 3b932e24e94fb868
|
||||||
|
14234 14397 7695048421082172 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 3c4437beec6abc2c
|
||||||
|
14261 14405 7695048421342179 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 8e7f566354332f78
|
||||||
|
14275 14413 7695048421482158 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj 818155ec1ddded60
|
||||||
|
14284 14424 7695048421572170 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj a1e8ff246f9f14f1
|
||||||
|
14268 14452 7695048421412168 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj eabc0506271fa1a0
|
||||||
|
14253 14459 7695048421262173 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 7b8e2fa55e6d681e
|
||||||
|
14397 14535 7695048422712200 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8fee77e15a63b593
|
||||||
|
14406 14547 7695048422792165 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj d4ce97966eafb17e
|
||||||
|
14413 14554 7695048422872171 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj d650c887c67ccde
|
||||||
|
14356 14564 7695048422302181 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj be4e118beb8cf268
|
||||||
|
14424 14575 7695048422972190 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj 3334bd922141e0be
|
||||||
|
14452 14581 7695048423252170 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 10e295873d76c893
|
||||||
|
14364 14590 7695048422382176 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj 2cbf150be031d5da
|
||||||
|
14459 14624 7695048423322168 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 750d9fb59a43feab
|
||||||
|
14371 14633 7695048422452193 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 16862d49b863aa18
|
||||||
|
14536 14645 7695048424102200 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj c0a0cdb251a4258f
|
||||||
|
14547 14658 7695048424212185 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj efc84f7efc789f92
|
||||||
|
14555 14685 7695048424282185 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 5f80a6f48c3158cc
|
||||||
|
14575 14695 7695048424482167 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj d41601a9725fef9
|
||||||
|
14581 14703 7695048424552169 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 81ebf9ba65e247f8
|
||||||
|
14590 14720 7695048424642173 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 42491749220cdaea
|
||||||
|
14625 14741 7695048424982157 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 949d0ad9837155c0
|
||||||
|
14634 14749 7695048425072177 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj 724f5580dce23c2a
|
||||||
|
14645 14768 7695048425182199 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 1b7f18f4142b9208
|
||||||
|
14658 14779 7695048425372173 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 7043c1a484f42403
|
||||||
|
14703 14796 7695048425777636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 692aa1237e577180
|
||||||
|
14564 14807 7695048424382176 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 4dec466fe8e79f7b
|
||||||
|
14242 14813 7695048421162188 esp-idf/esp_driver_sdm/libesp_driver_sdm.a 23cc9066d997cd82
|
||||||
|
14742 14884 7695048426147604 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 895ccf1c643c461a
|
||||||
|
14720 14894 7695048425937625 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 26fb23f183f57fbc
|
||||||
|
14750 14935 7695048426237609 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 4e53213dc7ea9ce3
|
||||||
|
14808 14945 7695048426817610 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj 6ab6a5f712ced573
|
||||||
|
14768 14959 7695048426417595 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj d886b794eb4db1c4
|
||||||
|
14796 14966 7695048426697635 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 1beb686bc078effd
|
||||||
|
14779 15014 7695048426527598 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj 27bf3f95a6c0693a
|
||||||
|
14894 15073 7695048427677708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 10c92d42589b4118
|
||||||
|
14935 15080 7695048428087684 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 1a40eb23e445b50d
|
||||||
|
14884 15088 7695048427577617 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj ae2c71f3754d2c9
|
||||||
|
14966 15095 7695048428397595 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj be7d6cc7763f71f2
|
||||||
|
14945 15117 7695048428187602 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj a13c0784e21a27b9
|
||||||
|
14960 15166 7695048428327606 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj c6dd6b267d494d30
|
||||||
|
15016 15180 7695048428887607 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 5091ea52e47045
|
||||||
|
15073 15221 7695048429467645 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj e2d4b1396e015411
|
||||||
|
15081 15228 7695048429537612 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj eb6d9e6fa1cec938
|
||||||
|
15095 15235 7695048429687605 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 1872faf365898620
|
||||||
|
15088 15266 7695048429617602 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 171ac3c504124b8a
|
||||||
|
15180 15335 7695048430537619 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e7a7416858c82057
|
||||||
|
15118 15386 7695048429917604 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj 7485bcd4d6202ef7
|
||||||
|
15166 15408 7695048430397604 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj beb18dd1ba5141da
|
||||||
|
15228 15430 7695048431017601 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b8908983106224ce
|
||||||
|
15267 15437 7695048431397593 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 5553e354ef83eb18
|
||||||
|
15235 15482 7695048431087611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 46e88c2a291034bc
|
||||||
|
15221 15489 7695048430947610 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 612e7efe703edfa9
|
||||||
|
15335 15513 7695048432087595 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 459ea33f6ffc055b
|
||||||
|
15430 15599 7695048433037607 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b6a946eb1fcaa4ab
|
||||||
|
15387 15610 7695048432607608 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj c22192cf1d51415d
|
||||||
|
15408 15619 7695048432817591 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 91c43fbdbd86b0d5
|
||||||
|
15437 15627 7695048433107611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 2e15deed21549302
|
||||||
|
15489 15646 7695048433627623 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 314f7fdfd679300a
|
||||||
|
15482 15654 7695048433557595 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 73a74effad86230d
|
||||||
|
14813 15661 7695048426867583 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 126e8e38dc3a9e10
|
||||||
|
15513 15675 7695048433867611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 2299eb95f0ff85bd
|
||||||
|
15599 15716 7695048434727601 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj c4d754fc959f949f
|
||||||
|
15619 15769 7695048434927611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 822c59739bbfd0a
|
||||||
|
15627 15779 7695048435007603 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj e29cd82a4b2cd1ae
|
||||||
|
15647 15788 7695048435197593 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 3f81a6f5a19f094d
|
||||||
|
15610 15797 7695048434837624 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj a02a2e6f608fb10a
|
||||||
|
15654 15803 7695048435277612 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj a6560307f959bc07
|
||||||
|
15716 15811 7695048435898939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 47ded72119b99c9e
|
||||||
|
15675 15818 7695048435487600 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj dd3d335fb601efa2
|
||||||
|
14685 15825 7695048425592246 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 1e49bf077710f818
|
||||||
|
15779 15902 7695048436531501 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj d5e581e49fea5ff4
|
||||||
|
15811 15921 7695048436852312 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj fadf743fa947e5f6
|
||||||
|
15804 15930 7695048436772328 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj bacbcf0359dab4c8
|
||||||
|
15770 15936 7695048436431099 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 7b22b3bb5c1cec2e
|
||||||
|
15789 15944 7695048436621950 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj c3b5880167e60d7e
|
||||||
|
15797 15953 7695048436702326 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj db027edf5cab5ed1
|
||||||
|
15825 15982 7695048436992312 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 294b9f9fc82b7445
|
||||||
|
15902 16014 7695048437752327 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj d45ff254bf93f392
|
||||||
|
15930 16056 7695048438032290 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj a93fcf4f0deba77f
|
||||||
|
15921 16065 7695048437942300 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 769a6e4c2d89b49c
|
||||||
|
15944 16073 7695048438182307 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 6a898669eb47bbef
|
||||||
|
15818 16081 7695048436912292 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 2fdc77d035e7a27a
|
||||||
|
15936 16094 7695048438102312 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 32d76e68b9b748fb
|
||||||
|
15982 16101 7695048438557713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj cf6ce6c9eb66c5bf
|
||||||
|
15953 16116 7695048438262579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj db6a9a20affcfec8
|
||||||
|
16014 16125 7695048438877710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 86b4c51008254cb
|
||||||
|
16056 16157 7695048439300720 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 103622263209ab20
|
||||||
|
16066 16182 7695048439387705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj f732333b73be96e4
|
||||||
|
16094 16254 7695048439677708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj eef09c3d07f2b50d
|
||||||
|
16073 16275 7695048439467718 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 1c7a339a5746f37f
|
||||||
|
16101 16286 7695048439747700 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 79572acb1eb01995
|
||||||
|
16081 16293 7695048439547703 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj f845edfe24b429ea
|
||||||
|
16116 16304 7695048439897695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj 18670ab195f968b7
|
||||||
|
16125 16317 7695048439987699 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 2c483e9ba88521fe
|
||||||
|
16157 16352 7695048440307723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 9fe6025cab320621
|
||||||
|
16254 16362 7695048441277702 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 2502146793428892
|
||||||
|
14695 16372 7695048425687619 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 5e1f5ee4f451bb36
|
||||||
|
16276 16412 7695048441487699 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 9d0e92118d785b13
|
||||||
|
16293 16450 7695048441667713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 56169e39b8db2246
|
||||||
|
16182 16460 7695048440557702 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 1fbb0625ad191ebe
|
||||||
|
16304 16467 7695048441777700 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj d44cd0f28e64e6
|
||||||
|
16287 16474 7695048441597765 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj a2309d3211c72aa0
|
||||||
|
16372 16503 7695048442457743 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 7592fbdc3d34a16
|
||||||
|
16317 16537 7695048441907728 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 6242f588bb57eeac
|
||||||
|
16363 16545 7695048442357718 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 820a252489227c70
|
||||||
|
16352 16552 7695048442257713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj c59523ad2a0b356b
|
||||||
|
15661 16562 7695048435347612 esp-idf/esp_driver_rmt/libesp_driver_rmt.a d95433f4d1059ac9
|
||||||
|
16413 16637 7695048442857712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 3c78a835f99a11e1
|
||||||
|
16467 16646 7695048443407702 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj e2d74c311c10f49
|
||||||
|
16450 16658 7695048443237714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 9ec87d50b464fbaa
|
||||||
|
16474 16666 7695048443477708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj a1bc61bab0857593
|
||||||
|
16503 16680 7695048443767700 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj d9a9ceb444e46084
|
||||||
|
16537 16697 7695048444107706 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 4fde2063c97efde9
|
||||||
|
16545 16723 7695048444187709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 4a60e86864693586
|
||||||
|
16552 16781 7695048444257727 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj cdef455aa505499
|
||||||
|
16460 16790 7695048443337710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj ac60dd53fea7997b
|
||||||
|
16680 16831 7695048445537722 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 94eb243d872d2912
|
||||||
|
16658 16839 7695048445317699 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 165f6164104f800d
|
||||||
|
16666 16881 7695048445397705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 8460d545178a0d0f
|
||||||
|
16790 16918 7695048446637725 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj ec4e56e4a71598e9
|
||||||
|
16647 16928 7695048445197705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 35fc77786e2cff28
|
||||||
|
16637 16938 7695048445107703 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj f5f376044d30696d
|
||||||
|
16698 16947 7695048445717708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj a1109d320c9d4252
|
||||||
|
16724 16957 7695048445977708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj a8955f191fbfb011
|
||||||
|
16782 16965 7695048446547695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 552690634036be34
|
||||||
|
16839 16973 7695048447127731 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj bc8687f95eeab702
|
||||||
|
16832 16980 7695048447057709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj cf0779fb0f85f58e
|
||||||
|
16881 16999 7695048447547707 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 56feed675d27f4e1
|
||||||
|
16919 17028 7695048447917708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b40de75727024eea
|
||||||
|
16928 17111 7695048448017724 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 249d17bb94de252c
|
||||||
|
16938 17118 7695048448117705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 1850706347f0dfaf
|
||||||
|
16981 17128 7695048448537708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 4f2679a1644cf9ec
|
||||||
|
16999 17136 7695048448727709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 4524fcf5e51369eb
|
||||||
|
16974 17142 7695048448467726 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 58b84eaa388cebf0
|
||||||
|
16947 17150 7695048448207837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 95f5a9670367bd84
|
||||||
|
17029 17158 7695048449027724 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b3ff2af0f7223494
|
||||||
|
16965 17169 7695048448387710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 7e703ed460427860
|
||||||
|
16958 17176 7695048448317717 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 813058617e324381
|
||||||
|
17118 17280 7695048449917714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 5adde981c58c2571
|
||||||
|
17112 17289 7695048449857705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj cf3f532a9a6ef3a
|
||||||
|
17129 17297 7695048450017690 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj 98959b53bde2fb7a
|
||||||
|
17136 17303 7695048450097793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 512744f941ff017a
|
||||||
|
17158 17313 7695048450317738 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj 8a60b9f7f85e9ec1
|
||||||
|
17143 17344 7695048450157705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj 297b2bb4ec9e1928
|
||||||
|
17169 17351 7695048450427715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj cc5e23c71848a3e0
|
||||||
|
17177 17360 7695048450497722 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj e884acd5ec4a6f95
|
||||||
|
17151 17370 7695048450237727 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 566966ce61afedce
|
||||||
|
17297 17459 7695048451707723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj c0fe00d4a34fdead
|
||||||
|
17280 17469 7695048451537721 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 3eef3764992e5aba
|
||||||
|
17290 17476 7695048451637732 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj e718c2f49d395d4d
|
||||||
|
17360 17483 7695048452337698 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 58ad95cc78f3e5dc
|
||||||
|
16562 17491 7695048444357693 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a 95da7bb929864a6b
|
||||||
|
17371 17504 7695048452437728 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj 2afc52b07fe506
|
||||||
|
17303 17535 7695048451767719 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 95d57a977e035b8b
|
||||||
|
17313 17547 7695048451867779 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj 59ed5969e201bead
|
||||||
|
17459 17570 7695048453327721 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj 87726c5ccb6245d
|
||||||
|
17351 17592 7695048452247716 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj ac6ac2751e3b17af
|
||||||
|
17476 17665 7695048453497710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 7a53e136b8963066
|
||||||
|
17469 17684 7695048453427708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj 99cdf3cf4019bc16
|
||||||
|
17483 17685 7695048453567705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj ff19a99414d581de
|
||||||
|
17571 17692 7695048454437708 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj d64ef02f55c88a7c
|
||||||
|
17344 17693 7695048452177697 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj d761fdae5602c1de
|
||||||
|
17592 17697 7695048454657718 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 1fbe7f9ff80e83e7
|
||||||
|
17547 17711 7695048454207732 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj ca1cf52b2eb8996
|
||||||
|
17504 17712 7695048453777694 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 7d400350dcd771
|
||||||
|
17535 17713 7695048454087702 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 202c2909632a781
|
||||||
|
17665 17786 7695048456542831 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 5481fec62dc7df64
|
||||||
|
17665 17786 7695048456542831 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 5481fec62dc7df64
|
||||||
|
17491 17817 7695048453647725 esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a 19300f13aa9d8214
|
||||||
|
17786 17856 7695048457232835 bootloader-prefix/src/bootloader-stamp/bootloader-download a62c06e1f3fc5553
|
||||||
|
17786 17856 7695048457232835 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-download a62c06e1f3fc5553
|
||||||
|
17856 17930 7695048457972852 bootloader-prefix/src/bootloader-stamp/bootloader-update 76d60e243afc7a73
|
||||||
|
17856 17930 7695048457972852 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 76d60e243afc7a73
|
||||||
|
17817 17952 7695048456912836 esp-idf/sdmmc/libsdmmc.a 650f8e5eca39b456
|
||||||
|
17930 17995 7695048458632846 bootloader-prefix/src/bootloader-stamp/bootloader-patch f3770d4e49f38e6d
|
||||||
|
17930 17995 7695048458632846 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch f3770d4e49f38e6d
|
||||||
|
17952 18073 7695048458262860 esp-idf/esp_driver_i2s/libesp_driver_i2s.a ed858d614862a5a9
|
||||||
|
18073 18195 7695048459462858 esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a 23fd486faf2bb772
|
||||||
|
18196 18367 7695048460692832 esp-idf/esp_driver_spi/libesp_driver_spi.a ad2c0c926e32060f
|
||||||
|
18367 18471 7695048462407958 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a cf54b2955abd07cb
|
||||||
|
18471 18569 7695048463437967 esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a bd543d3af5b4d256
|
||||||
|
18569 18715 7695048464427972 esp-idf/esp_ringbuf/libesp_ringbuf.a baff804fe0708abd
|
||||||
|
18716 18895 7695048465887965 esp-idf/nvs_flash/libnvs_flash.a 8d9d7e72bcefd83a
|
||||||
|
18895 19005 7695048467687987 esp-idf/esp_event/libesp_event.a acfb8d6b19dbb4e6
|
||||||
|
19005 19117 7695048468787964 esp-idf/cxx/libcxx.a 6b2f191896bd62b3
|
||||||
|
19118 19233 7695048469907981 esp-idf/pthread/libpthread.a 9120f70e17ce02b0
|
||||||
|
19233 19397 7695048471067979 esp-idf/newlib/libnewlib.a 5226335a48fe1bb0
|
||||||
|
19398 19562 7695048472707978 esp-idf/freertos/libfreertos.a 5f6f42bbaebb55c1
|
||||||
|
19562 19998 7695048474357964 esp-idf/esp_hw_support/libesp_hw_support.a aeb0db9dacd9a23a
|
||||||
|
19998 20365 7695048478713138 esp-idf/esp_security/libesp_security.a 10bee3c23442ae98
|
||||||
|
20365 20715 7695048482388277 esp-idf/soc/libsoc.a a7392d42d8cc569e
|
||||||
|
20715 20936 7695048485883844 esp-idf/heap/libheap.a 99e3b50c71f0ef6b
|
||||||
|
20936 21614 7695048488093844 esp-idf/log/liblog.a 86d9667d33c6dc70
|
||||||
|
21614 22167 7695048494879328 esp-idf/hal/libhal.a a73105980a57c71b
|
||||||
|
22167 22473 7695048500405214 esp-idf/esp_rom/libesp_rom.a 2d6b3d1f2c542eb2
|
||||||
|
22473 22625 7695048503470974 esp-idf/esp_common/libesp_common.a 80a5620610a7613
|
||||||
|
22625 22948 7695048504986147 esp-idf/esp_system/libesp_system.a 35b34ff028d38634
|
||||||
|
22948 23210 7695048508213706 esp-idf/spi_flash/libspi_flash.a 36315e793796e986
|
||||||
|
23210 23446 7695048510839281 esp-idf/esp_mm/libesp_mm.a 6b4b35961532ede3
|
||||||
|
23446 23732 7695048513199960 esp-idf/bootloader_support/libbootloader_support.a c477ef86561aab06
|
||||||
|
23732 23938 7695048516066873 esp-idf/efuse/libefuse.a 64f529cb304118c0
|
||||||
|
23938 24172 7695048518116866 esp-idf/esp_partition/libesp_partition.a 3591d0d20d7c1317
|
||||||
|
24172 24328 7695048520456878 esp-idf/app_update/libapp_update.a 5dc82fc1aa746adf
|
||||||
|
24328 24466 7695048522017287 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 17ff3f0e4ac6ee91
|
||||||
|
24466 24859 7695048523397261 esp-idf/esp_app_format/libesp_app_format.a 7bd28adf076b9be
|
||||||
|
24859 25165 7695048527328090 esp-idf/mbedtls/mbedtls/library/libmbedtls.a bf1b0916485d7ff1
|
||||||
|
25165 25359 7695048530388108 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 1923024fa02cf917
|
||||||
|
25359 25869 7695048532328100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 5c12d2dde1613951
|
||||||
|
25870 25988 7695048537433259 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a d99598185fe96e04
|
||||||
|
25988 26096 7695048538623247 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a da00514a81b31079
|
||||||
|
26096 26639 7695048544783248 esp-idf/mbedtls/x509_crt_bundle 68a2590bdf2bda12
|
||||||
|
26096 26639 7695048544783248 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/x509_crt_bundle 68a2590bdf2bda12
|
||||||
|
26639 26913 7695048547808448 x509_crt_bundle.S ffe9a91e653f7e83
|
||||||
|
26639 26913 7695048547808448 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/x509_crt_bundle.S ffe9a91e653f7e83
|
||||||
|
26913 27050 7695048547868397 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj d7104868592e7522
|
||||||
|
26918 27063 7695048547918386 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 39c6410b56a32a88
|
||||||
|
26924 27083 7695048547978375 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj c1a9b02b8d8e09c8
|
||||||
|
26930 27098 7695048548038405 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj ba715383e61d79e5
|
||||||
|
26937 27111 7695048548098389 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 8f5fb4be97915286
|
||||||
|
26942 27125 7695048548158387 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj a6e592ee6594a5c2
|
||||||
|
26949 27132 7695048548228387 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj feeece166624353c
|
||||||
|
26982 27145 7695048548553529 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 4f6a89e3cca5b3db
|
||||||
|
26996 27160 7695048548693519 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj a1705163c2782291
|
||||||
|
27050 27171 7695048549243539 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 7efa3048ab262377
|
||||||
|
27084 27189 7695048549573524 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj 5d849701d08dfb55
|
||||||
|
27111 27207 7695048549843515 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj 46630b6b28de09c6
|
||||||
|
27098 27274 7695048549713540 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj bcb9d3df09f87a72
|
||||||
|
27160 27286 7695048550333531 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj f6b8961f5d89a462
|
||||||
|
27125 27302 7695048549993528 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj 5c197d9f06c11b7
|
||||||
|
27171 27312 7695048550453523 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj d76588c6dbbdfe6e
|
||||||
|
27189 27337 7695048550623519 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj 7e52911a03e0205f
|
||||||
|
27145 27345 7695048550193522 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 5a7438971b07e948
|
||||||
|
27207 27353 7695048550803546 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 26088e2cc4db617
|
||||||
|
27132 27376 7695048550063520 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj bad826b13baa9ea8
|
||||||
|
27274 27438 7695048551473510 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj c72bc17810cad5db
|
||||||
|
27312 27456 7695048551863527 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj aea2b12fbafe3b37
|
||||||
|
27287 27474 7695048551603541 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj 56f206dad1f6d077
|
||||||
|
27345 27548 7695048552193512 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj f593672c39a0d116
|
||||||
|
27302 27569 7695048551763525 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj a5116d5520c0083a
|
||||||
|
27376 27577 7695048552493520 esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj 6860927388e476bc
|
||||||
|
27354 27593 7695048552273519 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 35fbaf5fc6426903
|
||||||
|
27337 27665 7695048552103520 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj 704bdc7a906cab2e
|
||||||
|
27438 27694 7695048553113519 esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj 401bb0ad609b250d
|
||||||
|
27457 27707 7695048553303548 esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj 82b6ba045bed94d8
|
||||||
|
27569 27715 7695048554423508 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj 63d9f972ead651f5
|
||||||
|
27577 27733 7695048554513595 esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj 5f15beb022d4e008
|
||||||
|
27593 27741 7695048554663518 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj 9ff08f99dcc4836d
|
||||||
|
27474 27752 7695048553473504 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj b73a65637914c21f
|
||||||
|
27549 27764 7695048554233512 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj 793212a25cb3c19f
|
||||||
|
27063 27773 7695048549363526 esp-idf/mbedtls/libmbedtls.a a507559edf7056c
|
||||||
|
27665 27810 7695048555383520 esp-idf/usb/CMakeFiles/__idf_usb.dir/ext_hub.c.obj 4c12a509f8dbd799
|
||||||
|
27695 27865 7695048555683518 esp-idf/usb/CMakeFiles/__idf_usb.dir/ext_port.c.obj fe71ccdc8b4f8232
|
||||||
|
27715 27875 7695048555883545 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b7bcf56677be4051
|
||||||
|
27733 27901 7695048556063545 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj d22677a12a6bdf1b
|
||||||
|
27741 27921 7695048556143526 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 8338d5766072102a
|
||||||
|
27752 27985 7695048556263557 esp-idf/espressif__usb_host_hid/CMakeFiles/__idf_espressif__usb_host_hid.dir/hid_host.c.obj cc57c498766dca47
|
||||||
|
27764 27987 7695048556383543 esp-idf/esp_mqtt/CMakeFiles/__idf_esp_mqtt.dir/mqtt_client.c.obj a38fe82a82612a98
|
||||||
|
27810 27992 7695048556833510 esp-idf/esp_mqtt/CMakeFiles/__idf_esp_mqtt.dir/lib/mqtt_msg.c.obj 635b1149a4125ee4
|
||||||
|
27921 28051 7695048557943510 esp-idf/main/CMakeFiles/__idf_main.dir/cJSON.c.obj 15e34bc9f208498b
|
||||||
|
27707 28053 7695048555803522 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 5d612abf651d5a64
|
||||||
|
27865 28055 7695048557393544 esp-idf/esp_mqtt/CMakeFiles/__idf_esp_mqtt.dir/lib/mqtt_outbox.c.obj c64b9f550de9e2fe
|
||||||
|
27876 28056 7695048557633509 esp-idf/esp_mqtt/CMakeFiles/__idf_esp_mqtt.dir/lib/platform_esp32_idf.c.obj 693d1ec4fe85a7a0
|
||||||
|
27773 28103 7695048556463529 esp-idf/esp_pm/libesp_pm.a 82af26edbbbb824c
|
||||||
|
28103 28221 7695048559763522 esp-idf/esp_timer/libesp_timer.a eb5f71e3188224da
|
||||||
|
28221 28345 7695048560943527 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 78983f0c0360f92e
|
||||||
|
28345 28469 7695048562183526 esp-idf/xtensa/libxtensa.a f4a0a7f03ec2626a
|
||||||
|
28470 28630 7695048563428635 esp-idf/tcp_transport/libtcp_transport.a 9d2253663ec90858
|
||||||
|
28481 28672 7695048563538648 esp-idf/usb/libusb.a 44fba7a02093b0b6
|
||||||
|
28630 28821 7695048565038655 esp-idf/mqtt/libmqtt.a 2b0252754d85cafe
|
||||||
|
28672 28822 7695048565448644 esp-idf/espressif__usb_host_hid/libespressif__usb_host_hid.a 98fa46e92b0e308a
|
||||||
|
28641 28822 7695048565148647 esp-idf/esp_mqtt/libesp_mqtt.a fe0a758c0e546d78
|
||||||
|
17996 32746 7695048606135399 bootloader-prefix/src/bootloader-stamp/bootloader-configure c2673f4d5fec5e4a
|
||||||
|
17996 32746 7695048606135399 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure c2673f4d5fec5e4a
|
||||||
|
120 2480 7695051649149592 esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj 5caf557875e586e1
|
||||||
|
2481 3028 7695051672749445 esp-idf/main/libmain.a 94ab86f2aeb262d0
|
||||||
|
126 7492 7695051649209586 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
126 7492 7695051649209586 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
7492 7527 7695051722872838 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
7492 7527 7695051722872838 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
7527 7599 7695051723902828 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
7527 7599 7695051723902828 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
7527 7599 7695051723902828 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
7527 7599 7695051723902828 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
3028 12355 7695051771189054 esp-idf/esp_system/ld/sections.ld bf72a7a58a378290
|
||||||
|
3028 12355 7695051771189054 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/ld/sections.ld bf72a7a58a378290
|
||||||
|
12355 12384 7695051771488725 CMakeFiles/Keyboard_lights_2.elf.dir/project_elf_src_esp32s3.c.obj f8497739c220073f
|
||||||
|
12385 17716 7695051771788738 Keyboard_lights_2.elf 4ffb489f797d4573
|
||||||
|
17716 18050 7695051828404391 .bin_timestamp 4e4f9dd92e2e0b92
|
||||||
|
17716 18050 7695051828404391 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/.bin_timestamp 4e4f9dd92e2e0b92
|
||||||
|
18050 18146 7695051828454436 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
18050 18146 7695051828454436 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
153 279 7695051970070604 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
153 279 7695051970070604 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
139 371 7695051969930526 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
139 371 7695051969930526 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
372 407 7695051972260504 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
372 407 7695051972260504 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
407 486 7695051973350544 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
407 486 7695051973350544 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
407 486 7695051973350544 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
407 486 7695051973350544 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
486 17983 7695051973410535 CMakeFiles/flash c7e8411869624c9e
|
||||||
|
486 17983 7695051973410535 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/flash c7e8411869624c9e
|
||||||
|
126 348 7695094786193498 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
126 348 7695094786193498 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
348 387 7695094788423460 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
348 387 7695094788423460 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
387 467 7695094789563725 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
387 467 7695094789563725 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
387 467 7695094789563725 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
387 467 7695094789563725 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
120 1011 7695094786133775 esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj 5caf557875e586e1
|
||||||
|
1012 1114 7695094795050592 esp-idf/main/libmain.a 94ab86f2aeb262d0
|
||||||
|
1114 8002 7695094864676276 esp-idf/esp_system/ld/sections.ld bf72a7a58a378290
|
||||||
|
1114 8002 7695094864676276 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/ld/sections.ld bf72a7a58a378290
|
||||||
|
8002 13566 7695094864956266 Keyboard_lights_2.elf 4ffb489f797d4573
|
||||||
|
13566 13908 7695094923970007 .bin_timestamp 4e4f9dd92e2e0b92
|
||||||
|
13566 13908 7695094923970007 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/.bin_timestamp 4e4f9dd92e2e0b92
|
||||||
|
13908 14004 7695094924010041 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
13908 14004 7695094924010041 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
145 274 7695095553937333 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
145 274 7695095553937333 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
135 352 7695095553837335 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
135 352 7695095553837335 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
352 391 7695095556007314 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
352 391 7695095556007314 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
391 473 7695095557167342 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
391 473 7695095557167342 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
391 473 7695095557167342 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
391 473 7695095557167342 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
473 18009 7695095557217323 CMakeFiles/flash c7e8411869624c9e
|
||||||
|
473 18009 7695095557217323 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/flash c7e8411869624c9e
|
||||||
|
111 220 7695130229332974 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
111 220 7695130229332974 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
104 290 7695130229263250 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
104 290 7695130229263250 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
290 325 7695130231122963 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
290 325 7695130231122963 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
326 400 7695130232193093 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
326 400 7695130232193093 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
326 400 7695130232193093 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
326 400 7695130232193093 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
116 237 7695131028519018 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
116 237 7695131028519018 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
108 316 7695131028438930 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
108 316 7695131028438930 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
317 355 7695131030519240 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
317 355 7695131030519240 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
355 432 7695131031639247 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
355 432 7695131031639247 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
355 432 7695131031639247 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
355 432 7695131031639247 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
114 237 7695131763035827 esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
114 237 7695131763035827 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size 7992e24db5f4f95b
|
||||||
|
106 310 7695131762956186 bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.elf 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin 98183c9d7ed641fd
|
||||||
|
106 310 7695131762956186 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.map 98183c9d7ed641fd
|
||||||
|
311 347 7695131765006932 bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
311 347 7695131765006932 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install c6a3411f1a79f016
|
||||||
|
347 422 7695131766066939 CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
347 422 7695131766066939 bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
347 422 7695131766066939 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete 174a809513df2589
|
||||||
|
347 422 7695131766066939 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 174a809513df2589
|
||||||
|
423 18179 7695131766126975 CMakeFiles/flash c7e8411869624c9e
|
||||||
|
423 18179 7695131766126975 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/flash c7e8411869624c9e
|
||||||
616
build/CMakeCache.txt
Normal file
616
build/CMakeCache.txt
Normal file
@ -0,0 +1,616 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: c:/Users/Dell/Documents/ESP/Keyboard_lights_2/build
|
||||||
|
# It was generated by CMake: C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake.exe
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
CCACHE_ENABLE:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CCACHE_FOUND:FILEPATH=C:/Espressif/tools/tools/ccache/4.10.2/ccache-4.10.2-windows-x86_64/ccache.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//ASM Compiler Base Flags
|
||||||
|
CMAKE_ASM_FLAGS:STRING='-mlongcalls '
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during DEBUG builds.
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELEASE builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C++ Compiler Base Flags
|
||||||
|
CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C Compiler Base Flags
|
||||||
|
CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//User executables (bin)
|
||||||
|
CMAKE_INSTALL_BINDIR:PATH=bin
|
||||||
|
|
||||||
|
//Read-only architecture-independent data (DATAROOTDIR)
|
||||||
|
CMAKE_INSTALL_DATADIR:PATH=
|
||||||
|
|
||||||
|
//Read-only architecture-independent data root (share)
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR:PATH=share
|
||||||
|
|
||||||
|
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
|
||||||
|
CMAKE_INSTALL_DOCDIR:PATH=
|
||||||
|
|
||||||
|
//C header files (include)
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR:PATH=include
|
||||||
|
|
||||||
|
//Info documentation (DATAROOTDIR/info)
|
||||||
|
CMAKE_INSTALL_INFODIR:PATH=
|
||||||
|
|
||||||
|
//Object code libraries (lib)
|
||||||
|
CMAKE_INSTALL_LIBDIR:PATH=lib
|
||||||
|
|
||||||
|
//Program executables (libexec)
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
|
||||||
|
|
||||||
|
//Locale-dependent data (DATAROOTDIR/locale)
|
||||||
|
CMAKE_INSTALL_LOCALEDIR:PATH=
|
||||||
|
|
||||||
|
//Modifiable single-machine data (var)
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
|
||||||
|
|
||||||
|
//Man documentation (DATAROOTDIR/man)
|
||||||
|
CMAKE_INSTALL_MANDIR:PATH=
|
||||||
|
|
||||||
|
//C header files for non-gcc (/usr/include)
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Keyboard_lights_2
|
||||||
|
|
||||||
|
//Run-time variable data (LOCALSTATEDIR/run)
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR:PATH=
|
||||||
|
|
||||||
|
//System admin executables (sbin)
|
||||||
|
CMAKE_INSTALL_SBINDIR:PATH=sbin
|
||||||
|
|
||||||
|
//Modifiable architecture-independent data (com)
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
|
||||||
|
|
||||||
|
//Read-only single-machine data (etc)
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe
|
||||||
|
|
||||||
|
//Program used to build from build.ninja files.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=Keyboard_lights_2
|
||||||
|
|
||||||
|
//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=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-readelf.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||||
|
|
||||||
|
//The CMake toolchain file
|
||||||
|
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Disable package configuration, target export and installation
|
||||||
|
DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON
|
||||||
|
|
||||||
|
//Build Mbed TLS programs.
|
||||||
|
ENABLE_PROGRAMS:BOOL=
|
||||||
|
|
||||||
|
//Build Mbed TLS tests.
|
||||||
|
ENABLE_TESTING:BOOL=
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
ESP_PLATFORM:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//Generate the auto-generated files as needed
|
||||||
|
GEN_FILES:BOOL=
|
||||||
|
|
||||||
|
//Git command line client
|
||||||
|
GIT_EXECUTABLE:FILEPATH=C:/Espressif/tools/tools/idf-git/2.39.2/cmd/git.exe
|
||||||
|
|
||||||
|
//IDF Build Target
|
||||||
|
IDF_TARGET:STRING=esp32s3
|
||||||
|
|
||||||
|
//IDF Build Toolchain Type
|
||||||
|
IDF_TOOLCHAIN:STRING=gcc
|
||||||
|
|
||||||
|
//Install Mbed TLS headers.
|
||||||
|
INSTALL_MBEDTLS_HEADERS:BOOL=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Keyboard_lights_2_BINARY_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Keyboard_lights_2_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Keyboard_lights_2_SOURCE_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2
|
||||||
|
|
||||||
|
//Explicitly link Mbed TLS library to pthread.
|
||||||
|
LINK_WITH_PTHREAD:BOOL=OFF
|
||||||
|
|
||||||
|
//Explicitly link Mbed TLS library to trusted_storage.
|
||||||
|
LINK_WITH_TRUSTED_STORAGE:BOOL=OFF
|
||||||
|
|
||||||
|
//Mbed TLS config file (overrides default).
|
||||||
|
MBEDTLS_CONFIG_FILE:FILEPATH=
|
||||||
|
|
||||||
|
//Compiler warnings treated as errors
|
||||||
|
MBEDTLS_FATAL_WARNINGS:BOOL=ON
|
||||||
|
|
||||||
|
//Mbed TLS user config file (appended to default).
|
||||||
|
MBEDTLS_USER_CONFIG_FILE:FILEPATH=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_BINARY_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_SOURCE_DIR:STATIC=C:/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/mbedtls
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON:UNINITIALIZED=C:\Espressif\tools\python_env\idf5.4_py3.11_env\Scripts\python.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//Allow unsafe builds. These builds ARE NOT SECURE.
|
||||||
|
UNSAFE_BUILD:BOOL=OFF
|
||||||
|
|
||||||
|
//Build Mbed TLS shared library.
|
||||||
|
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
|
||||||
|
|
||||||
|
//Build Mbed TLS static library.
|
||||||
|
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_BINARY_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_SOURCE_DIR:STATIC=C:/Espressif/frameworks/v5.4.1/esp-idf
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;everest;general;p256m;general;idf::esp_security;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_xtensa;general;mbedx509;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedcrypto;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
|
||||||
|
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS
|
||||||
|
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Dell/Documents/ESP/Keyboard_lights_2/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=30
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake.exe
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cpack.exe
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/ctest.exe
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake-gui.exe
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Ninja
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||||
|
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Dell/Documents/ESP/Keyboard_lights_2
|
||||||
|
//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=83
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_TAPI
|
||||||
|
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS
|
||||||
|
C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1
|
||||||
|
//Details about finding Git
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Espressif/tools/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()]
|
||||||
|
//Details about finding Python3
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Espressif/tools/python_env/idf5.4_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()]
|
||||||
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//ADVANCED property for variable: GIT_EXECUTABLE
|
||||||
|
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
//CMAKE_INSTALL_PREFIX during last run
|
||||||
|
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/Keyboard_lights_2
|
||||||
|
//Compiler reason failure
|
||||||
|
_Python3_Compiler_REASON_FAILURE:INTERNAL=
|
||||||
|
//Development reason failure
|
||||||
|
_Python3_Development_REASON_FAILURE:INTERNAL=
|
||||||
|
_Python3_EXECUTABLE:INTERNAL=C:/Espressif/tools/python_env/idf5.4_py3.11_env/Scripts/python.exe
|
||||||
|
//Python3 Properties
|
||||||
|
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;C:\Espressif\tools\tools\idf-python\3.11.2\Lib;C:\Espressif\tools\python_env\idf5.4_py3.11_env\Lib;C:\Espressif\tools\python_env\idf5.4_py3.11_env\Lib\site-packages;C:\Espressif\tools\python_env\idf5.4_py3.11_env\Lib\site-packages
|
||||||
|
_Python3_INTERPRETER_SIGNATURE:INTERNAL=cf96c66d4ea90f8835a831b98db9b68a
|
||||||
|
//NumPy reason failure
|
||||||
|
_Python3_NumPy_REASON_FAILURE:INTERNAL=
|
||||||
|
|
||||||
29
build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake
Normal file
29
build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
set(CMAKE_ASM_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_ASM_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_ASM_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_ASM_COMPILER_VERSION "")
|
||||||
|
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-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 )
|
||||||
|
|
||||||
|
|
||||||
82
build/CMakeFiles/3.30.2/CMakeCCompiler.cmake
Normal file
82
build/CMakeFiles/3.30.2/CMakeCCompiler.cmake
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
set(CMAKE_C_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "14.2.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_C_STANDARD_LATEST "23")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
106
build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake
Normal file
106
build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "14.2.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||||
|
### Imported target for C++23 standard library
|
||||||
|
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
|
||||||
|
|
||||||
|
|
||||||
|
### Imported target for C++26 standard library
|
||||||
|
set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BIN
build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin
Normal file
BIN
build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin
Normal file
Binary file not shown.
BIN
build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin
Normal file
BIN
build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin
Normal file
Binary file not shown.
15
build/CMakeFiles/3.30.2/CMakeSystem.cmake
Normal file
15
build/CMakeFiles/3.30.2/CMakeSystem.cmake
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Windows")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
|
||||||
|
|
||||||
|
include("C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/toolchain-esp32s3.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)
|
||||||
904
build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c
Normal file
904
build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c
Normal 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
|
||||||
BIN
build/CMakeFiles/3.30.2/CompilerIdC/a.out
Normal file
BIN
build/CMakeFiles/3.30.2/CompilerIdC/a.out
Normal file
Binary file not shown.
919
build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
919
build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal 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;
|
||||||
|
}
|
||||||
BIN
build/CMakeFiles/3.30.2/CompilerIdCXX/a.out
Normal file
BIN
build/CMakeFiles/3.30.2/CompilerIdCXX/a.out
Normal file
Binary file not shown.
603
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
603
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
@ -0,0 +1,603 @@
|
|||||||
|
|
||||||
|
---
|
||||||
|
events:
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
The target system is: Generic - -
|
||||||
|
The host system is: Windows - 10.0.19045 - AMD64
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe
|
||||||
|
Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in:
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/3.30.2/CompilerIdC/a.out
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
|
Compiler: C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe
|
||||||
|
Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||||
|
|
||||||
|
The CXX compiler identification is GNU, found in:
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
|
||||||
|
xtensa-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0
|
||||||
|
Copyright (C) 2024 Free Software Foundation, Inc.
|
||||||
|
This is free software; see the source for copying conditions. There is NO
|
||||||
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
checks:
|
||||||
|
- "Detecting C compiler ABI info"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-kvsvn4"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-kvsvn4"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy"
|
||||||
|
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "CMAKE_C_ABI_COMPILED"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-kvsvn4'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_7abbb
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7abbb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccxrtHy0.s
|
||||||
|
GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)
|
||||||
|
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"
|
||||||
|
ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include
|
||||||
|
End of search list.
|
||||||
|
Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccxrtHy0.s
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.'\x0d
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -o cmTC_7abbb && cd ."
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||||
|
COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_7abbb' '-dumpdir' 'cmTC_7abbb.'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccNvJ7kb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_7abbb C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_7abbb' '-dumpdir' 'cmTC_7abbb.'\x0d
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed C implicit include dir info: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
implicit include dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed C implicit link information:
|
||||||
|
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||||
|
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
|
||||||
|
ignore line: [Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-kvsvn4']
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_7abbb]
|
||||||
|
ignore line: [[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7abbb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccxrtHy0.s]
|
||||||
|
ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)]
|
||||||
|
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"]
|
||||||
|
ignore line: [ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccxrtHy0.s]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.'\x0d]
|
||||||
|
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -o cmTC_7abbb && cd ."]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_7abbb' '-dumpdir' 'cmTC_7abbb.']
|
||||||
|
link line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccNvJ7kb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_7abbb C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore
|
||||||
|
arg [-plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccNvJ7kb.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [--sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||||
|
arg [--dynconfig=xtensa_esp32s3.so] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_7abbb] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||||
|
arg [CMakeFiles/cmTC_7abbb.dir/CMakeCCompilerABI.c.obj] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_7abbb' '-dumpdir' 'cmTC_7abbb.'\x0d]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: []
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit libs: [gcc;c;nosys;c;gcc]
|
||||||
|
implicit objs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
implicit dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
checks:
|
||||||
|
- "Detecting CXX compiler ABI info"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-t9vl1k"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-t9vl1k"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy"
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_CXX_SCAN_FOR_MODULES: "OFF"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-t9vl1k'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_4f70f
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4f70f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccWZZcyl.s
|
||||||
|
GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)
|
||||||
|
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"
|
||||||
|
ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include
|
||||||
|
End of search list.
|
||||||
|
Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccWZZcyl.s
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4f70f && cd ."
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||||
|
COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f70f' '-dumpdir' 'cmTC_4f70f.'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccarXIwp.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4f70f C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f70f' '-dumpdir' 'cmTC_4f70f.'\x0d
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed CXX implicit include dir info: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
implicit include dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:10 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed CXX implicit link information:
|
||||||
|
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||||
|
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
|
||||||
|
ignore line: [Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-t9vl1k']
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_4f70f]
|
||||||
|
ignore line: [[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4f70f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccWZZcyl.s]
|
||||||
|
ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)]
|
||||||
|
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"]
|
||||||
|
ignore line: [ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccWZZcyl.s]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||||
|
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4f70f && cd ."]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f70f' '-dumpdir' 'cmTC_4f70f.']
|
||||||
|
link line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccarXIwp.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4f70f C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore
|
||||||
|
arg [-plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccarXIwp.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [--sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||||
|
arg [--dynconfig=xtensa_esp32s3.so] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_4f70f] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||||
|
arg [CMakeFiles/cmTC_4f70f.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
|
||||||
|
arg [-lstdc++] ==> lib [stdc++]
|
||||||
|
arg [-lm] ==> lib [m]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f70f' '-dumpdir' 'cmTC_4f70f.'\x0d]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: []
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
|
||||||
|
implicit objs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
implicit dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:136 (find_package)"
|
||||||
|
checks:
|
||||||
|
- "Performing Test CMAKE_HAVE_LIBC_PTHREAD"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-zlq1rj"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-zlq1rj"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy"
|
||||||
|
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "CMAKE_HAVE_LIBC_PTHREAD"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-zlq1rj'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_8810c
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o CMakeFiles/cmTC_8810c.dir/src.c.obj -c C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-zlq1rj/src.c
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy CMakeFiles/cmTC_8810c.dir/src.c.obj -o cmTC_8810c && cd ."
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_8810c.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail\x0d
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:219 (CHECK_C_COMPILER_FLAG)"
|
||||||
|
checks:
|
||||||
|
- "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-6vk75j"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-6vk75j"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow"
|
||||||
|
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-6vk75j'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_4ad6c
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_4ad6c.dir/src.c.obj -c C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/CMakeScratch/TryCompile-6vk75j/src.c
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow CMakeFiles/cmTC_4ad6c.dir/src.c.obj -o cmTC_4ad6c && cd ."
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
...
|
||||||
Binary file not shown.
609
build/CMakeFiles/TargetDirectories.txt
Normal file
609
build/CMakeFiles/TargetDirectories.txt
Normal file
@ -0,0 +1,609 @@
|
|||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/menuconfig.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/confserver.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/save-defconfig.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/gen_project_binary.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/app.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/erase_flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/merge-bin.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/monitor.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/encrypted-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/_project_elf_src.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/Keyboard_lights_2.elf.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/size.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/size-files.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/size-components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/dfu.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/dfu-list.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/dfu-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/uf2.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/uf2-app.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/xtensa/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/partition-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/partition_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/partition_table/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/app_update/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/efuse/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_common/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/__idf_hal.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/hal/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/__idf_log.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/log/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/__idf_heap.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/heap/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/__idf_soc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/soc/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_security/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/freertos/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/pthread/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/cxx/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_event/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/__idf_driver.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/driver/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/vfs/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/lwip/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/http_parser/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/mqtt/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/__idf_usb.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/usb/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/__idf_espressif__usb_host_hid.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/espressif__usb_host_hid/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/__idf_esp_mqtt.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/esp_mqtt/CMakeFiles/install/strip.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/__idf_main.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/list_install_components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/install.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/install/local.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/esp-idf/main/CMakeFiles/install/strip.dir
|
||||||
0
build/CMakeFiles/bootloader-complete
Normal file
0
build/CMakeFiles/bootloader-complete
Normal file
43
build/CMakeFiles/bootloader.dir/Labels.json
Normal file
43
build/CMakeFiles/bootloader.dir/Labels.json
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"target" :
|
||||||
|
{
|
||||||
|
"labels" :
|
||||||
|
[
|
||||||
|
"bootloader"
|
||||||
|
],
|
||||||
|
"name" : "bootloader"
|
||||||
|
}
|
||||||
|
}
|
||||||
13
build/CMakeFiles/bootloader.dir/Labels.txt
Normal file
13
build/CMakeFiles/bootloader.dir/Labels.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Target labels
|
||||||
|
bootloader
|
||||||
|
# Source files and their labels
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/bootloader-complete.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule
|
||||||
24
build/CMakeFiles/clean_additional.cmake
Normal file
24
build/CMakeFiles/clean_additional.cmake
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Additional clean files
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"Keyboard_lights_2.bin"
|
||||||
|
"Keyboard_lights_2.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_esp32s3.c"
|
||||||
|
"x509_crt_bundle.S"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
1
build/CMakeFiles/cmake.check_cache
Normal file
1
build/CMakeFiles/cmake.check_cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
build/CMakeFiles/git-data/HEAD
Normal file
1
build/CMakeFiles/git-data/HEAD
Normal file
@ -0,0 +1 @@
|
|||||||
|
ref: refs/heads/main
|
||||||
50
build/CMakeFiles/git-data/grabRef.cmake
Normal file
50
build/CMakeFiles/git-data/grabRef.cmake
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
#
|
||||||
|
# Internal file for GetGitRevisionDescription.cmake
|
||||||
|
#
|
||||||
|
# Requires CMake 2.6 or newer (uses the 'function' command)
|
||||||
|
#
|
||||||
|
# Original Author:
|
||||||
|
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||||
|
# http://academic.cleardefinition.com
|
||||||
|
# Iowa State University HCI Graduate Program/VRAC
|
||||||
|
#
|
||||||
|
# Copyright Iowa State University 2009-2010.
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
set(HEAD_HASH)
|
||||||
|
|
||||||
|
file(READ "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
|
||||||
|
|
||||||
|
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
|
||||||
|
set(GIT_DIR "C:/Users/Dell/Documents/ESP/.git")
|
||||||
|
# handle git-worktree
|
||||||
|
if(EXISTS "${GIT_DIR}/commondir")
|
||||||
|
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
|
||||||
|
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
|
||||||
|
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
|
||||||
|
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
|
||||||
|
endif()
|
||||||
|
if(EXISTS "${GIT_DIR_NEW}")
|
||||||
|
set(GIT_DIR "${GIT_DIR_NEW}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
if(HEAD_CONTENTS MATCHES "ref")
|
||||||
|
# named branch
|
||||||
|
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
|
||||||
|
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
set(HEAD_HASH "${HEAD_REF}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# detached HEAD
|
||||||
|
configure_file("${GIT_DIR}/HEAD" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT HEAD_HASH)
|
||||||
|
file(READ "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
|
||||||
|
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||||
|
endif()
|
||||||
1
build/CMakeFiles/git-data/head-ref
Normal file
1
build/CMakeFiles/git-data/head-ref
Normal file
@ -0,0 +1 @@
|
|||||||
|
40f85616263c7b9d661e3bf979547358f420ff8b
|
||||||
1392
build/CMakeFiles/rules.ninja
Normal file
1392
build/CMakeFiles/rules.ninja
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/Keyboard_lights_2.bin
Normal file
BIN
build/Keyboard_lights_2.bin
Normal file
Binary file not shown.
BIN
build/Keyboard_lights_2.elf
Normal file
BIN
build/Keyboard_lights_2.elf
Normal file
Binary file not shown.
106381
build/Keyboard_lights_2.map
Normal file
106381
build/Keyboard_lights_2.map
Normal file
File diff suppressed because one or more lines are too long
2
build/app-flash_args
Normal file
2
build/app-flash_args
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
--flash_mode dio --flash_freq 80m --flash_size 2MB
|
||||||
|
0x10000 Keyboard_lights_2.bin
|
||||||
2
build/bootloader-flash_args
Normal file
2
build/bootloader-flash_args
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
--flash_mode dio --flash_freq 80m --flash_size 2MB
|
||||||
|
0x0 bootloader/bootloader.bin
|
||||||
@ -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=
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
# This is a generated file and its contents are an internal implementation detail.
|
||||||
|
# The download step will be re-executed if anything in this file changes.
|
||||||
|
# No other meaning or use of this file is supported.
|
||||||
|
|
||||||
|
method=source_dir
|
||||||
|
command=
|
||||||
|
source_dir=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject
|
||||||
|
work_dir=
|
||||||
|
|
||||||
@ -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=
|
||||||
1
build/bootloader-prefix/tmp/bootloader-cfgcmd.txt
Normal file
1
build/bootloader-prefix/tmp/bootloader-cfgcmd.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
cmd='C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/sdkconfig;-DIDF_PATH=C:/Espressif/frameworks/v5.4.1/esp-idf;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Espressif/tools/python_env/idf5.4_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/Dell/Documents/ESP/Keyboard_lights_2;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'
|
||||||
27
build/bootloader-prefix/tmp/bootloader-mkdirs.cmake
Normal file
27
build/bootloader-prefix/tmp/bootloader-mkdirs.cmake
Normal 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 "C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject")
|
||||||
|
file(MAKE_DIRECTORY "C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject")
|
||||||
|
endif()
|
||||||
|
file(MAKE_DIRECTORY
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader"
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix"
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/tmp"
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp"
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src"
|
||||||
|
"C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
set(configSubDirs )
|
||||||
|
foreach(subDir IN LISTS configSubDirs)
|
||||||
|
file(MAKE_DIRECTORY "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
|
||||||
|
endforeach()
|
||||||
|
if(cfgdir)
|
||||||
|
file(MAKE_DIRECTORY "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
|
||||||
|
endif()
|
||||||
1
build/bootloader/.bin_timestamp
Normal file
1
build/bootloader/.bin_timestamp
Normal file
@ -0,0 +1 @@
|
|||||||
|
9bed56e31c3c50d614b835c6567468f7 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/bootloader.bin
|
||||||
BIN
build/bootloader/.ninja_deps
Normal file
BIN
build/bootloader/.ninja_deps
Normal file
Binary file not shown.
131
build/bootloader/.ninja_log
Normal file
131
build/bootloader/.ninja_log
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
# ninja log v6
|
||||||
|
16 369 7695051649749585 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj f523f1dabca52cbc
|
||||||
|
21 418 7695051649809595 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 14acc781a3c79f34
|
||||||
|
44 436 7695051650039598 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj fe2f50347287f1ac
|
||||||
|
27 495 7695051649869606 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 8d3ec8199620d344
|
||||||
|
32 517 7695051649909596 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 8c7e638566474183
|
||||||
|
60 576 7695051650199598 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 654da27a87fe80a4
|
||||||
|
65 590 7695051650249594 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj f7e600b799b8e799
|
||||||
|
79 633 7695051650389602 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 47833eca3537ef2f
|
||||||
|
74 642 7695051650329604 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 18e888b6c82ea9c2
|
||||||
|
372 699 7695051653315022 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 92b120ea02219973
|
||||||
|
517 780 7695051654765017 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj a6918d9b954cb51b
|
||||||
|
418 810 7695051653775016 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj eac8c142263467d0
|
||||||
|
37 826 7695051649969596 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj aabb90b6f49ad17e
|
||||||
|
436 931 7695051653955035 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 206491e7f0bead45
|
||||||
|
495 986 7695051654555028 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 980ea77ccedb27f0
|
||||||
|
642 1077 7695051656015024 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 6b735b13c4086d6c
|
||||||
|
590 1085 7695051655497447 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj c02abbcfc316e9d4
|
||||||
|
700 1145 7695051656595016 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj c29debdaaf677d75
|
||||||
|
633 1245 7695051655925027 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 5b26862e455a3fd3
|
||||||
|
780 1296 7695051657395020 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj 8a41a0d32bbaf18f
|
||||||
|
577 1303 7695051655365032 esp-idf/log/liblog.a 55451136b35734bc
|
||||||
|
826 1422 7695051657865030 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj 978563d65f80c565
|
||||||
|
1085 1603 7695051660446620 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj d96bdb33ab06b39f
|
||||||
|
986 1612 7695051659456019 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 763879f2103f8edf
|
||||||
|
1246 1690 7695051662056619 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 725fbb189500641d
|
||||||
|
1145 1715 7695051661046635 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 97dae721fb307301
|
||||||
|
811 1740 7695051657705032 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 3eed54a6cc786537
|
||||||
|
931 1748 7695051658905687 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 908233697bcc40df
|
||||||
|
1077 1755 7695051660366625 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj 6d9dc3a45c0f37d9
|
||||||
|
1297 1941 7695051662566636 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 28692244e381428a
|
||||||
|
1422 1947 7695051663816894 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj ba32f6e91282065a
|
||||||
|
1690 2176 7695051666498254 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj d9c084b6ca237472
|
||||||
|
1303 2204 7695051662626625 esp-idf/esp_rom/libesp_rom.a 2d6b3d1f2c542eb2
|
||||||
|
1603 2218 7695051665627462 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 9601157585c7f95a
|
||||||
|
1612 2318 7695051665717463 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj d2681d5b3ff63563
|
||||||
|
1755 2468 7695051667148557 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 52b46e0afd0a5060
|
||||||
|
1941 2511 7695051669008854 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 909a5d2de6d81ec7
|
||||||
|
1715 2527 7695051666748562 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 96c1039d1ea47125
|
||||||
|
1740 2533 7695051666998562 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 707ac30ee38ba226
|
||||||
|
1748 2547 7695051667078585 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 140af277200ae613
|
||||||
|
1948 2720 7695051669068852 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 9bd245262adaae54
|
||||||
|
2218 2776 7695051671779156 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 8f8e78f867265b1d
|
||||||
|
2176 2862 7695051671359196 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 2696b571f0b8e526
|
||||||
|
2204 2935 7695051671639152 esp-idf/esp_common/libesp_common.a 80a5620610a7613
|
||||||
|
2468 2948 7695051674279486 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj c7c55d7325cf1561
|
||||||
|
2319 2992 7695051672779433 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj ca12fdd86844497f
|
||||||
|
2511 2998 7695051674709439 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj c5f4078e709c25e8
|
||||||
|
2533 3260 7695051674929440 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 7d4380b5fc160a1f
|
||||||
|
2776 3271 7695051677355414 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj a27333ad78925df0
|
||||||
|
2992 3316 7695051679515781 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj 8622e54e18f23c22
|
||||||
|
2564 3443 7695051675249438 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj d64f41586efdcfde
|
||||||
|
2527 3640 7695051674869442 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 1062601f90d87022
|
||||||
|
2949 3664 7695051679085385 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 2fec875c327e5995
|
||||||
|
3316 3675 7695051682756066 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj 237617238e79abc3
|
||||||
|
2998 3680 7695051679575773 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj f2d0cb14e724b4c1
|
||||||
|
3271 3695 7695051682306074 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj 1dcaab2f4cef0c56
|
||||||
|
2935 3731 7695051678955387 esp-idf/esp_hw_support/libesp_hw_support.a 11364fb210ad07b1
|
||||||
|
3260 3771 7695051682196067 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 88f4061f23193001
|
||||||
|
2720 3790 7695051676795387 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 9ee883153cad1281
|
||||||
|
2862 3931 7695051678215389 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 5b725a93ab7a2ef6
|
||||||
|
3664 3980 7695051686242690 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 9fcecccf67e02c12
|
||||||
|
3640 3997 7695051685997193 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 9db8a4de16ff0791
|
||||||
|
3443 4114 7695051684026690 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj d01576492e1ac356
|
||||||
|
3681 4152 7695051686402716 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 8658bcc27d11547d
|
||||||
|
3695 4198 7695051686552689 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 66861cee4b824a3c
|
||||||
|
3675 4257 7695051686342696 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 586c6c567453e132
|
||||||
|
3771 4343 7695051687312698 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 2c24686602aff1ba
|
||||||
|
3790 4394 7695051687492685 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj cd309d80c92f3d05
|
||||||
|
4152 4421 7695051691112709 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj e0ee3fbedc15d595
|
||||||
|
4114 4433 7695051690732689 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b121dbc38818ee9
|
||||||
|
3731 4439 7695051686912684 esp-idf/esp_system/libesp_system.a e661f0f6ab850979
|
||||||
|
4198 4456 7695051691582794 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj a309f324ab8259ec
|
||||||
|
3931 4462 7695051688912704 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj a47dfe76a27333f1
|
||||||
|
4257 4584 7695051692172702 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj f76c39939cc37a82
|
||||||
|
4344 4712 7695051693032994 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj 81bfa2ecfea87ded
|
||||||
|
4394 4721 7695051693533343 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 8e948153db2c72d3
|
||||||
|
4421 4753 7695051693803353 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj 975d5ceaefe21c07
|
||||||
|
4433 4761 7695051693923320 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj 3bbf556365fc4d7
|
||||||
|
3980 4777 7695051689392686 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 67497e077b8755a2
|
||||||
|
4456 4813 7695051694163341 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj 84fb1395107949c2
|
||||||
|
4462 4834 7695051694223322 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj 20704c74e41bebbe
|
||||||
|
4584 4840 7695051695443336 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj e8e8aa55af091382
|
||||||
|
4721 5029 7695051696803600 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj f854ce79dab87fa2
|
||||||
|
4712 5065 7695051696723618 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 790eb1127c89e836
|
||||||
|
4835 5097 7695051697943626 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj 9d4ed2fd82759da0
|
||||||
|
4439 5102 7695051693993330 esp-idf/efuse/libefuse.a dd34f79ed47bba35
|
||||||
|
4777 5118 7695051697373625 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj ccfb50f316e78329
|
||||||
|
4753 5124 7695051697123607 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj fd8c5ceb141cd6d9
|
||||||
|
4761 5130 7695051697203610 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj a12d6bd6fced641d
|
||||||
|
4814 5136 7695051697733624 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj dc16fb8d5816c2d1
|
||||||
|
4840 5257 7695051697993613 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj b1a9b087b195a3aa
|
||||||
|
5029 5369 7695051699894242 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj d16cf2d46757a6ce
|
||||||
|
5118 5397 7695051700774514 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj 2546be69af5db513
|
||||||
|
5097 5423 7695051700564503 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj fbf8b7c1531f301b
|
||||||
|
5124 5436 7695051700844520 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj f28542a29645b3f7
|
||||||
|
5130 5446 7695051700894512 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj ce361e84d078f396
|
||||||
|
5066 5450 7695051700254513 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj d25b9588bbefb314
|
||||||
|
5136 5450 7695051700954496 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj 834aec5101b38f8d
|
||||||
|
5257 5481 7695051702165204 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 520ab15f95d6244
|
||||||
|
5398 5485 7695051704275802 project_elf_src_esp32s3.c 201cd828cfe09815
|
||||||
|
5398 5485 7695051704275802 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/project_elf_src_esp32s3.c 201cd828cfe09815
|
||||||
|
5102 5593 7695051700614513 esp-idf/bootloader_support/libbootloader_support.a d057269850de115f
|
||||||
|
5369 5632 7695051703285484 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 847079dfeda7fc34
|
||||||
|
5485 5637 7695051704445795 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj 41dfa358c73d62ed
|
||||||
|
5423 5653 7695051703825498 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 890e537ff1d66b67
|
||||||
|
5593 5711 7695051705525807 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 17ff3f0e4ac6ee91
|
||||||
|
3997 5764 7695051689562700 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj aee3150f6e0d3038
|
||||||
|
5711 5864 7695051706707279 esp-idf/spi_flash/libspi_flash.a 206dd298e2b3edd9
|
||||||
|
5864 5973 7695051708227284 esp-idf/hal/libhal.a e978908e6d222681
|
||||||
|
5973 6254 7695051709327293 esp-idf/micro-ecc/libmicro-ecc.a 7b3576b135fa571a
|
||||||
|
6254 6455 7695051712137673 esp-idf/soc/libsoc.a a7392d42d8cc569e
|
||||||
|
6456 6556 7695051714147655 esp-idf/xtensa/libxtensa.a 9edcf4833e9e8f79
|
||||||
|
6556 6652 7695051715157662 esp-idf/main/libmain.a c0fc81d5566e1b8f
|
||||||
|
6652 6898 7695051716117656 bootloader.elf 30dd940a745a514c
|
||||||
|
6898 7226 7695051721812813 .bin_timestamp f0b40c2b0e9a8c2
|
||||||
|
6898 7226 7695051721812813 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/.bin_timestamp f0b40c2b0e9a8c2
|
||||||
|
7226 7320 7695051721852826 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
7226 7320 7695051721852826 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
65 170 7695051971140498 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
65 170 7695051971140498 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
53 166 7695094787213470 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
53 166 7695094787213470 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
49 160 7695095554817318 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
49 160 7695095554817318 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
39 141 7695130230042963 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
39 141 7695130230042963 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
43 156 7695131029314085 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
43 156 7695131029314085 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
39 148 7695131763837050 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
|
39 148 7695131763837050 C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 937be314858923ff
|
||||||
444
build/bootloader/CMakeCache.txt
Normal file
444
build/bootloader/CMakeCache.txt
Normal file
@ -0,0 +1,444 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: c:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader
|
||||||
|
# It was generated by CMake: C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake.exe
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//ASM Compiler Base Flags
|
||||||
|
CMAKE_ASM_FLAGS:STRING='-mlongcalls '
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during DEBUG builds.
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELEASE builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C++ Compiler Base Flags
|
||||||
|
CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C Compiler Base Flags
|
||||||
|
CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe
|
||||||
|
|
||||||
|
//Program used to build from build.ninja files.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=bootloader
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-readelf.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||||
|
|
||||||
|
//The CMake toolchain file
|
||||||
|
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
EXTRA_COMPONENT_DIRS:UNINITIALIZED=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader
|
||||||
|
|
||||||
|
//Git command line client
|
||||||
|
GIT_EXECUTABLE:FILEPATH=C:/Espressif/tools/tools/idf-git/2.39.2/cmd/git.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
IDF_PATH:UNINITIALIZED=C:/Espressif/frameworks/v5.4.1/esp-idf
|
||||||
|
|
||||||
|
//IDF Build Target
|
||||||
|
IDF_TARGET:STRING=esp32s3
|
||||||
|
|
||||||
|
//IDF Build Toolchain Type
|
||||||
|
IDF_TOOLCHAIN:STRING=gcc
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
IGNORE_EXTRA_COMPONENT:UNINITIALIZED=
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/Dell/Documents/ESP/Keyboard_lights_2
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON:UNINITIALIZED=C:/Espressif/tools/python_env/idf5.4_py3.11_env/Scripts/python.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
SDKCONFIG:UNINITIALIZED=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/sdkconfig
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_BINARY_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_SOURCE_DIR:STATIC=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_BINARY_DIR:STATIC=C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_SOURCE_DIR:STATIC=C:/Espressif/frameworks/v5.4.1/esp-idf
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
|
||||||
|
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS
|
||||||
|
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=30
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake.exe
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cpack.exe
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/ctest.exe
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/bin/cmake-gui.exe
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Ninja
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=25
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_TAPI
|
||||||
|
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding Git
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Espressif/tools/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()]
|
||||||
|
//ADVANCED property for variable: GIT_EXECUTABLE
|
||||||
|
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
|
||||||
29
build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake
Normal file
29
build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
set(CMAKE_ASM_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_ASM_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_ASM_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_ASM_COMPILER_VERSION "")
|
||||||
|
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-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 )
|
||||||
|
|
||||||
|
|
||||||
82
build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake
Normal file
82
build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
set(CMAKE_C_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "14.2.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_C_STANDARD_LATEST "23")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
106
build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake
Normal file
106
build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "14.2.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||||
|
### Imported target for C++23 standard library
|
||||||
|
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
|
||||||
|
|
||||||
|
|
||||||
|
### Imported target for C++26 standard library
|
||||||
|
set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
15
build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake
Normal file
15
build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Windows")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
|
||||||
|
|
||||||
|
include("C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/toolchain-esp32s3.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)
|
||||||
@ -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
|
||||||
BIN
build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out
Normal file
BIN
build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out
Normal file
Binary file not shown.
@ -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;
|
||||||
|
}
|
||||||
BIN
build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out
Normal file
BIN
build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out
Normal file
Binary file not shown.
540
build/bootloader/CMakeFiles/CMakeConfigureLog.yaml
Normal file
540
build/bootloader/CMakeFiles/CMakeConfigureLog.yaml
Normal file
@ -0,0 +1,540 @@
|
|||||||
|
|
||||||
|
---
|
||||||
|
events:
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
The target system is: Generic - -
|
||||||
|
The host system is: Windows - 10.0.19045 - AMD64
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe
|
||||||
|
Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in:
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
|
Compiler: C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe
|
||||||
|
Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||||
|
|
||||||
|
The CXX compiler identification is GNU, found in:
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
|
||||||
|
xtensa-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0
|
||||||
|
Copyright (C) 2024 Free Software Foundation, Inc.
|
||||||
|
This is free software; see the source for copying conditions. There is NO
|
||||||
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
checks:
|
||||||
|
- "Detecting C compiler ABI info"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-xez8k3"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-xez8k3"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy"
|
||||||
|
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "CMAKE_C_ABI_COMPILED"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-xez8k3'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_fb4e5
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_fb4e5.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccd33zcc.s
|
||||||
|
GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)
|
||||||
|
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"
|
||||||
|
ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include
|
||||||
|
End of search list.
|
||||||
|
Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccd33zcc.s
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.'\x0d
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -o cmTC_fb4e5 && cd ."
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||||
|
COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_fb4e5' '-dumpdir' 'cmTC_fb4e5.'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccdt04tk.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_fb4e5 C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_fb4e5' '-dumpdir' 'cmTC_fb4e5.'\x0d
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed C implicit include dir info: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
implicit include dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed C implicit link information:
|
||||||
|
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||||
|
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
|
||||||
|
ignore line: [Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-xez8k3']
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_fb4e5]
|
||||||
|
ignore line: [[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_fb4e5.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccd33zcc.s]
|
||||||
|
ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)]
|
||||||
|
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"]
|
||||||
|
ignore line: [ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccd33zcc.s]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.'\x0d]
|
||||||
|
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -o cmTC_fb4e5 && cd ."]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_fb4e5' '-dumpdir' 'cmTC_fb4e5.']
|
||||||
|
link line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccdt04tk.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_fb4e5 C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore
|
||||||
|
arg [-plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\ccdt04tk.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [--sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||||
|
arg [--dynconfig=xtensa_esp32s3.so] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_fb4e5] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||||
|
arg [CMakeFiles/cmTC_fb4e5.dir/CMakeCCompilerABI.c.obj] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_fb4e5' '-dumpdir' 'cmTC_fb4e5.'\x0d]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: []
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit libs: [gcc;c;nosys;c;gcc]
|
||||||
|
implicit objs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
implicit dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "try_compile-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
checks:
|
||||||
|
- "Detecting CXX compiler ABI info"
|
||||||
|
directories:
|
||||||
|
source: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-258ikc"
|
||||||
|
binary: "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-258ikc"
|
||||||
|
cmakeVariables:
|
||||||
|
CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy"
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||||
|
CMAKE_CXX_SCAN_FOR_MODULES: "OFF"
|
||||||
|
CMAKE_EXE_LINKER_FLAGS: ""
|
||||||
|
CMAKE_MODULE_PATH: "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake;C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/third_party"
|
||||||
|
buildResult:
|
||||||
|
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||||
|
cached: true
|
||||||
|
stdout: |
|
||||||
|
Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-258ikc'
|
||||||
|
|
||||||
|
Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_4f135
|
||||||
|
[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4f135.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccwiDiHO.s
|
||||||
|
GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)
|
||||||
|
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"
|
||||||
|
ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"
|
||||||
|
ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include
|
||||||
|
End of search list.
|
||||||
|
Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccwiDiHO.s
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||||
|
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4f135 && cd ."
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||||
|
COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe
|
||||||
|
Target: xtensa-esp-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119)
|
||||||
|
COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/
|
||||||
|
LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f135' '-dumpdir' 'cmTC_4f135.'
|
||||||
|
C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\cccQwB3W.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4f135 C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d
|
||||||
|
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f135' '-dumpdir' 'cmTC_4f135.'\x0d
|
||||||
|
|
||||||
|
exitCode: 0
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed CXX implicit include dir info: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
add: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
collapse include dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
implicit include dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
|
||||||
|
|
||||||
|
|
||||||
|
-
|
||||||
|
kind: "message-v1"
|
||||||
|
backtrace:
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
|
||||||
|
- "C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
|
||||||
|
- "C:/Espressif/frameworks/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)"
|
||||||
|
- "CMakeLists.txt:67 (project)"
|
||||||
|
message: |
|
||||||
|
Parsed CXX implicit link information:
|
||||||
|
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||||
|
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
|
||||||
|
ignore line: [Change Dir: 'C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-258ikc']
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s): C:/Espressif/tools/tools/ninja/1.12.1/ninja.exe -v cmTC_4f135]
|
||||||
|
ignore line: [[1/2] C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4f135.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Dell\\AppData\\Local\\Temp\\ccwiDiHO.s]
|
||||||
|
ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)]
|
||||||
|
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"]
|
||||||
|
ignore line: [ignoring nonexistent directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [ignoring duplicate directory "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/']
|
||||||
|
ignore line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Dell\\AppData\\Local\\Temp\\ccwiDiHO.s]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||||
|
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4f135 && cd ."]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe]
|
||||||
|
ignore line: [Target: xtensa-esp-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ]
|
||||||
|
ignore line: [COMPILER_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||||
|
ignore line: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f135' '-dumpdir' 'cmTC_4f135.']
|
||||||
|
link line: [ C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\cccQwB3W.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4f135 C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o\x0d]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore
|
||||||
|
arg [-plugin-opt=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=C:\\Users\\Dell\\AppData\\Local\\Temp\\cccQwB3W.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [--sysroot=C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||||
|
arg [--dynconfig=xtensa_esp32s3.so] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_4f135] ==> ignore
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||||
|
arg [-LC:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||||
|
arg [CMakeFiles/cmTC_4f135.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
|
||||||
|
arg [-lstdc++] ==> lib [stdc++]
|
||||||
|
arg [-lm] ==> lib [m]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
arg [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_4f135' '-dumpdir' 'cmTC_4f135.'\x0d]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: []
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/crt0.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o]
|
||||||
|
collapse obj [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
|
||||||
|
collapse library dir [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
|
||||||
|
implicit objs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3/crt0.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crti.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtbegin.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtend.o;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/crtn.o]
|
||||||
|
implicit dirs: [C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
...
|
||||||
90
build/bootloader/CMakeFiles/TargetDirectories.txt
Normal file
90
build/bootloader/CMakeFiles/TargetDirectories.txt
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/menuconfig.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/confserver.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/save-defconfig.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/gen_project_binary.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/app.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/erase_flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/merge-bin.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/monitor.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/_project_elf_src.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/bootloader.elf.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/size.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/size-files.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/size-components.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/dfu.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/dfu-list.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/dfu-flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/uf2.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/uf2-app.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir
|
||||||
Binary file not shown.
12
build/bootloader/CMakeFiles/clean_additional.cmake
Normal file
12
build/bootloader/CMakeFiles/clean_additional.cmake
Normal 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_esp32s3.c"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
1
build/bootloader/CMakeFiles/cmake.check_cache
Normal file
1
build/bootloader/CMakeFiles/cmake.check_cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
build/bootloader/CMakeFiles/git-data/HEAD
Normal file
1
build/bootloader/CMakeFiles/git-data/HEAD
Normal file
@ -0,0 +1 @@
|
|||||||
|
4c2820d377d1375e787bcef612f0c32c1427d183
|
||||||
50
build/bootloader/CMakeFiles/git-data/grabRef.cmake
Normal file
50
build/bootloader/CMakeFiles/git-data/grabRef.cmake
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
#
|
||||||
|
# Internal file for GetGitRevisionDescription.cmake
|
||||||
|
#
|
||||||
|
# Requires CMake 2.6 or newer (uses the 'function' command)
|
||||||
|
#
|
||||||
|
# Original Author:
|
||||||
|
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||||
|
# http://academic.cleardefinition.com
|
||||||
|
# Iowa State University HCI Graduate Program/VRAC
|
||||||
|
#
|
||||||
|
# Copyright Iowa State University 2009-2010.
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
set(HEAD_HASH)
|
||||||
|
|
||||||
|
file(READ "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
|
||||||
|
|
||||||
|
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
|
||||||
|
set(GIT_DIR "C:/Espressif/frameworks/v5.4.1/esp-idf/.git")
|
||||||
|
# handle git-worktree
|
||||||
|
if(EXISTS "${GIT_DIR}/commondir")
|
||||||
|
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
|
||||||
|
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
|
||||||
|
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
|
||||||
|
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
|
||||||
|
endif()
|
||||||
|
if(EXISTS "${GIT_DIR_NEW}")
|
||||||
|
set(GIT_DIR "${GIT_DIR_NEW}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
if(HEAD_CONTENTS MATCHES "ref")
|
||||||
|
# named branch
|
||||||
|
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
|
||||||
|
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
set(HEAD_HASH "${HEAD_REF}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# detached HEAD
|
||||||
|
configure_file("${GIT_DIR}/HEAD" "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT HEAD_HASH)
|
||||||
|
file(READ "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
|
||||||
|
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||||
|
endif()
|
||||||
1
build/bootloader/CMakeFiles/git-data/head-ref
Normal file
1
build/bootloader/CMakeFiles/git-data/head-ref
Normal file
@ -0,0 +1 @@
|
|||||||
|
4c2820d377d1375e787bcef612f0c32c1427d183
|
||||||
348
build/bootloader/CMakeFiles/rules.ninja
Normal file
348
build/bootloader/CMakeFiles/rules.ninja
Normal file
@ -0,0 +1,348 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Ninja" Generator, CMake Version 3.30
|
||||||
|
|
||||||
|
# This file contains all the rules used to get the outputs files
|
||||||
|
# built from the input files.
|
||||||
|
# It is included in the main 'build.ninja'.
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Project: bootloader
|
||||||
|
# Configurations:
|
||||||
|
# =============================================================================
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER__bootloader.2eelf_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C executable.
|
||||||
|
|
||||||
|
rule C_EXECUTABLE_LINKER__bootloader.2eelf_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD"
|
||||||
|
description = Linking C executable $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for running custom commands.
|
||||||
|
|
||||||
|
rule CUSTOM_COMMAND
|
||||||
|
command = $COMMAND
|
||||||
|
description = $DESC
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_xtensa_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_xtensa_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_soc_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_soc_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_micro-ecc_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_hal_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_hal_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_spi_flash_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_bootloader_format_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_bootloader_support_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_efuse_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_efuse_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_system_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_system_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hw_support_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_common_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_common_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling ASM files.
|
||||||
|
|
||||||
|
rule ASM_COMPILER____idf_esp_rom_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building ASM object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_rom_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_log_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_log_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_main_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_main_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for re-running cmake.
|
||||||
|
|
||||||
|
rule RERUN_CMAKE
|
||||||
|
command = C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Espressif\frameworks\v5.4.1\esp-idf\components\bootloader\subproject -BC:\Users\Dell\Documents\ESP\Keyboard_lights_2\build\bootloader
|
||||||
|
description = Re-running CMake...
|
||||||
|
generator = 1
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for cleaning additional files.
|
||||||
|
|
||||||
|
rule CLEAN_ADDITIONAL
|
||||||
|
command = C:\Espressif\tools\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake
|
||||||
|
description = Cleaning additional files...
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for cleaning all built files.
|
||||||
|
|
||||||
|
rule CLEAN
|
||||||
|
command = C:\Espressif\tools\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS
|
||||||
|
description = Cleaning all built files...
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for printing all primary targets available.
|
||||||
|
|
||||||
|
rule HELP
|
||||||
|
command = C:\Espressif\tools\tools\ninja\1.12.1\ninja.exe -t targets
|
||||||
|
description = All primary targets available:
|
||||||
|
|
||||||
BIN
build/bootloader/bootloader.bin
Normal file
BIN
build/bootloader/bootloader.bin
Normal file
Binary file not shown.
BIN
build/bootloader/bootloader.elf
Normal file
BIN
build/bootloader/bootloader.elf
Normal file
Binary file not shown.
7150
build/bootloader/bootloader.map
Normal file
7150
build/bootloader/bootloader.map
Normal file
File diff suppressed because it is too large
Load Diff
2762
build/bootloader/build.ninja
Normal file
2762
build/bootloader/build.ninja
Normal file
File diff suppressed because one or more lines are too long
62
build/bootloader/cmake_install.cmake
Normal file
62
build/bootloader/cmake_install.cmake
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
# Install script for directory: C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set path to fallback-tool for dependency-resolution.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/esp-idf/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
||||||
|
unset(CMAKE_INST_COMP_HASH)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
file(WRITE "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
584
build/bootloader/compile_commands.json
Normal file
584
build/bootloader/compile_commands.json
Normal file
@ -0,0 +1,584 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj -c C:\\Users\\Dell\\Documents\\ESP\\Keyboard_lights_2\\build\\bootloader\\project_elf_src_esp32s3.c",
|
||||||
|
"file": "C:\\Users\\Dell\\Documents\\ESP\\Keyboard_lights_2\\build\\bootloader\\project_elf_src_esp32s3.c",
|
||||||
|
"output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\xtensa\\eri.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\xtensa\\eri.c",
|
||||||
|
"output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\xtensa\\xt_trax.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\xtensa\\xt_trax.c",
|
||||||
|
"output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\lldesc.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\lldesc.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\dport_access_common.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\dport_access_common.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c",
|
||||||
|
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c",
|
||||||
|
"output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\hal_utils.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\hal_utils.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\mpu_hal.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\mpu_hal.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\efuse_hal.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\efuse_hal.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\mmu_hal.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\mmu_hal.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\cache_hal.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\hal\\cache_hal.c",
|
||||||
|
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c",
|
||||||
|
"output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c",
|
||||||
|
"output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_sha.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_sha.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_sha.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_sha.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_bootloader_format/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c",
|
||||||
|
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c",
|
||||||
|
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_system\\esp_err.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_system\\esp_err.c",
|
||||||
|
"output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\cpu.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\cpu.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c",
|
||||||
|
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c",
|
||||||
|
"output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/platform_port/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S",
|
||||||
|
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c",
|
||||||
|
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c",
|
||||||
|
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include/esp_private -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c",
|
||||||
|
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directory": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader",
|
||||||
|
"command": "C:\\Espressif\\tools\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/config -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/log/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/dma/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/platform_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/xtensa/deprecated_include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3 -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/esp32s3/register -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c",
|
||||||
|
"file": "C:\\Espressif\\frameworks\\v5.4.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c",
|
||||||
|
"output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj"
|
||||||
|
}
|
||||||
|
]
|
||||||
12
build/bootloader/config.env
Normal file
12
build/bootloader/config.env
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"COMPONENT_KCONFIGS": "C:/Espressif/frameworks/v5.4.1/esp-idf/components/efuse/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_common/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_security/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_system/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/freertos/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/log/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/soc/Kconfig;C:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/Kconfig",
|
||||||
|
"COMPONENT_KCONFIGS_PROJBUILD": "C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild",
|
||||||
|
"COMPONENT_SDKCONFIG_RENAMES": "C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/v5.4.1/esp-idf/components/esptool_py/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/freertos/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/hal/sdkconfig.rename;C:/Espressif/frameworks/v5.4.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/v5.4.1/esp-idf/components/spi_flash/sdkconfig.rename",
|
||||||
|
"IDF_TARGET": "esp32s3",
|
||||||
|
"IDF_TOOLCHAIN": "gcc",
|
||||||
|
"IDF_VERSION": "5.4.1",
|
||||||
|
"IDF_ENV_FPGA": "",
|
||||||
|
"IDF_PATH": "C:/Espressif/frameworks/v5.4.1/esp-idf",
|
||||||
|
"COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/kconfigs.in",
|
||||||
|
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/Dell/Documents/ESP/Keyboard_lights_2/build/bootloader/kconfigs_projbuild.in"
|
||||||
|
}
|
||||||
11267
build/bootloader/config/kconfig_menus.json
Normal file
11267
build/bootloader/config/kconfig_menus.json
Normal file
File diff suppressed because it is too large
Load Diff
889
build/bootloader/config/sdkconfig.cmake
Normal file
889
build/bootloader/config/sdkconfig.cmake
Normal file
File diff suppressed because one or more lines are too long
663
build/bootloader/config/sdkconfig.h
Normal file
663
build/bootloader/config/sdkconfig.h
Normal file
@ -0,0 +1,663 @@
|
|||||||
|
/*
|
||||||
|
* Automatically generated file. DO NOT EDIT.
|
||||||
|
* Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000
|
||||||
|
#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8
|
||||||
|
#define CONFIG_SOC_ADC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_UART_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PCNT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PHY_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_WIFI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_TWAI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_GDMA_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_GPTIMER_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MCPWM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1
|
||||||
|
#define CONFIG_SOC_ULP_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ULP_FSM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_USB_OTG_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1
|
||||||
|
#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1
|
||||||
|
#define CONFIG_SOC_EFUSE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PSRAM_DMA_CAPABLE 1
|
||||||
|
#define CONFIG_SOC_XT_WDT_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_TEMP_SENSOR_SUPPORTED 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_TOUCH_SENSOR_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BOD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CLK_TREE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MPU_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_SIMD_INSTRUCTION_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_XTAL_SUPPORT_40M 1
|
||||||
|
#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1
|
||||||
|
#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 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 10
|
||||||
|
#define CONFIG_SOC_ADC_ATTEN_NUM 4
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2
|
||||||
|
#define CONFIG_SOC_ADC_PATT_LEN_MAX 24
|
||||||
|
#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_CACHE_WRITEBACK_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CPU_CORES_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_INTR_NUM 32
|
||||||
|
#define CONFIG_SOC_CPU_HAS_FPU 1
|
||||||
|
#define CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES 1
|
||||||
|
#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 64
|
||||||
|
#define CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT 16
|
||||||
|
#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096
|
||||||
|
#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 5
|
||||||
|
#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 5
|
||||||
|
#define CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM 1
|
||||||
|
#define CONFIG_SOC_GPIO_PORT 1
|
||||||
|
#define CONFIG_SOC_GPIO_PIN_COUNT 49
|
||||||
|
#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1
|
||||||
|
#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1
|
||||||
|
#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1
|
||||||
|
#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1
|
||||||
|
#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF
|
||||||
|
#define CONFIG_SOC_GPIO_IN_RANGE_MAX 48
|
||||||
|
#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 48
|
||||||
|
#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000
|
||||||
|
#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 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_GPIO_OUT_AUTO_ENABLE 1
|
||||||
|
#define CONFIG_SOC_I2C_NUM 2
|
||||||
|
#define CONFIG_SOC_HP_I2C_NUM 2
|
||||||
|
#define CONFIG_SOC_I2C_FIFO_LEN 32
|
||||||
|
#define CONFIG_SOC_I2C_CMD_REG_NUM 8
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORT_HW_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_SUPPORT_I2CRAM_ACCESS 1
|
||||||
|
#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1
|
||||||
|
#define CONFIG_SOC_I2S_NUM 2
|
||||||
|
#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_PDM_RX 1
|
||||||
|
#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4
|
||||||
|
#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_TIMER_NUM 4
|
||||||
|
#define CONFIG_SOC_LEDC_CHANNEL_NUM 8
|
||||||
|
#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14
|
||||||
|
#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1
|
||||||
|
#define CONFIG_SOC_MCPWM_GROUPS 2
|
||||||
|
#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3
|
||||||
|
#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3
|
||||||
|
#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2
|
||||||
|
#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2
|
||||||
|
#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2
|
||||||
|
#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3
|
||||||
|
#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1
|
||||||
|
#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3
|
||||||
|
#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3
|
||||||
|
#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1
|
||||||
|
#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1
|
||||||
|
#define CONFIG_SOC_MMU_PERIPH_NUM 1
|
||||||
|
#define CONFIG_SOC_PCNT_GROUPS 1
|
||||||
|
#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4
|
||||||
|
#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2
|
||||||
|
#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2
|
||||||
|
#define CONFIG_SOC_RMT_GROUPS 1
|
||||||
|
#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4
|
||||||
|
#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4
|
||||||
|
#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8
|
||||||
|
#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_XTAL 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_APB 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORT_DMA 1
|
||||||
|
#define CONFIG_SOC_LCD_I80_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCD_RGB_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCD_I80_BUSES 1
|
||||||
|
#define CONFIG_SOC_LCD_RGB_PANELS 1
|
||||||
|
#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16
|
||||||
|
#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16
|
||||||
|
#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_I80_NUM_BUSES 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_I80_BUS_WIDTH 16
|
||||||
|
#define CONFIG_SOC_LCDCAM_RGB_NUM_PANELS 1
|
||||||
|
#define CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH 16
|
||||||
|
#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128
|
||||||
|
#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549
|
||||||
|
#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128
|
||||||
|
#define CONFIG_SOC_RTCIO_PIN_COUNT 22
|
||||||
|
#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1
|
||||||
|
#define CONFIG_SOC_SDM_GROUPS 1
|
||||||
|
#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8
|
||||||
|
#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1
|
||||||
|
#define CONFIG_SOC_SPI_PERIPH_NUM 3
|
||||||
|
#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_MEMSPI_IS_INDEPENDENT 1
|
||||||
|
#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16
|
||||||
|
#define CONFIG_SOC_SPI_SUPPORT_OCT 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_SRC_FREQ_120M 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_20M_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPIRAM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPIRAM_XIP_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 2
|
||||||
|
#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 4
|
||||||
|
#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32
|
||||||
|
#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16
|
||||||
|
#define CONFIG_SOC_TOUCH_SENSOR_VERSION 2
|
||||||
|
#define CONFIG_SOC_TOUCH_SENSOR_NUM 15
|
||||||
|
#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF 1
|
||||||
|
#define CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING 1
|
||||||
|
#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3
|
||||||
|
#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM 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_UART_NUM 3
|
||||||
|
#define CONFIG_SOC_UART_HP_NUM 3
|
||||||
|
#define CONFIG_SOC_UART_FIFO_LEN 128
|
||||||
|
#define CONFIG_SOC_UART_BITRATE_MAX 5000000
|
||||||
|
#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1
|
||||||
|
#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1
|
||||||
|
#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_USB_OTG_PERIPH_NUM 1
|
||||||
|
#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_SHA_SUPPORT_SHA384 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA512 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA512_224 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1
|
||||||
|
#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4
|
||||||
|
#define CONFIG_SOC_MPI_OPERATIONS_NUM 3
|
||||||
|
#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096
|
||||||
|
#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_PM_SUPPORT_EXT0_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_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_SUPPORT_MODEM_PD 1
|
||||||
|
#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1
|
||||||
|
#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1
|
||||||
|
#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1
|
||||||
|
#define CONFIG_SOC_PM_MODEM_PD_BY_SW 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_EFUSE_DIS_DOWNLOAD_ICACHE 1
|
||||||
|
#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1
|
||||||
|
#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1
|
||||||
|
#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1
|
||||||
|
#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1
|
||||||
|
#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 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 64
|
||||||
|
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1
|
||||||
|
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1
|
||||||
|
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1
|
||||||
|
#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1
|
||||||
|
#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16
|
||||||
|
#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256
|
||||||
|
#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_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_SW_SUSPEND 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1
|
||||||
|
#define CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY 1
|
||||||
|
#define CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP 1
|
||||||
|
#define CONFIG_SOC_COEX_HW_PTI 1
|
||||||
|
#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1
|
||||||
|
#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1
|
||||||
|
#define CONFIG_SOC_SDMMC_NUM_SLOTS 2
|
||||||
|
#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1
|
||||||
|
#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4
|
||||||
|
#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 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_ULP_HAS_ADC 1
|
||||||
|
#define CONFIG_SOC_PHY_COMBO_MODULE 1
|
||||||
|
#define CONFIG_IDF_CMAKE 1
|
||||||
|
#define CONFIG_IDF_TOOLCHAIN "gcc"
|
||||||
|
#define CONFIG_IDF_TOOLCHAIN_GCC 1
|
||||||
|
#define CONFIG_IDF_TARGET_ARCH_XTENSA 1
|
||||||
|
#define CONFIG_IDF_TARGET_ARCH "xtensa"
|
||||||
|
#define CONFIG_IDF_TARGET "esp32s3"
|
||||||
|
#define CONFIG_IDF_INIT_VERSION "5.4.1"
|
||||||
|
#define CONFIG_IDF_TARGET_ESP32S3 1
|
||||||
|
#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009
|
||||||
|
#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_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1
|
||||||
|
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
|
||||||
|
#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
|
||||||
|
#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1
|
||||||
|
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
|
||||||
|
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
|
||||||
|
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
|
||||||
|
#define CONFIG_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_HAS_RETARGETABLE_LOCKING 1
|
||||||
|
#define CONFIG_ESP_ROM_USB_OTG_NUM 3
|
||||||
|
#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4
|
||||||
|
#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_HAS_HAL_WDT 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_FLASH_COUNT_PAGES_BUG 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_VERSION 1
|
||||||
|
#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1
|
||||||
|
#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 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"
|
||||||
|
#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_ASSERT_NDEBUG_EVALUATE 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_DISABLE_DEFAULT_ERRORS 1
|
||||||
|
#define CONFIG_COMPILER_RT_LIB_GCCLIB 1
|
||||||
|
#define CONFIG_COMPILER_RT_LIB_NAME "gcc"
|
||||||
|
#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1
|
||||||
|
#define CONFIG_EFUSE_MAX_BLK_LEN 256
|
||||||
|
#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1
|
||||||
|
#define CONFIG_ESP32S3_REV_MIN_0 1
|
||||||
|
#define CONFIG_ESP32S3_REV_MIN_FULL 0
|
||||||
|
#define CONFIG_ESP_REV_MIN_FULL 0
|
||||||
|
#define CONFIG_ESP32S3_REV_MAX_FULL 99
|
||||||
|
#define CONFIG_ESP_REV_MAX_FULL 99
|
||||||
|
#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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1
|
||||||
|
#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4
|
||||||
|
#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1
|
||||||
|
#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000
|
||||||
|
#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1
|
||||||
|
#define CONFIG_RTC_CLK_SRC_INT_RC 1
|
||||||
|
#define CONFIG_RTC_CLK_CAL_CYCLES 1024
|
||||||
|
#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_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_ESP32S3_INSTRUCTION_CACHE_16KB 1
|
||||||
|
#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000
|
||||||
|
#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1
|
||||||
|
#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8
|
||||||
|
#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1
|
||||||
|
#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32
|
||||||
|
#define CONFIG_ESP32S3_DATA_CACHE_32KB 1
|
||||||
|
#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000
|
||||||
|
#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1
|
||||||
|
#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8
|
||||||
|
#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1
|
||||||
|
#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32
|
||||||
|
#define CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM 0x0
|
||||||
|
#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0
|
||||||
|
#define CONFIG_ESP_SYSTEM_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_INT_WDT_CHECK_CPU1 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_EN 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_INIT 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5
|
||||||
|
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1
|
||||||
|
#define CONFIG_ESP_DEBUG_OCDAWARE 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET 1
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET_LVL 7
|
||||||
|
#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1
|
||||||
|
#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280
|
||||||
|
#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1
|
||||||
|
#define CONFIG_ESP_IPC_ISR_ENABLE 1
|
||||||
|
#define CONFIG_FREERTOS_HZ 100
|
||||||
|
#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1
|
||||||
|
#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1
|
||||||
|
#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536
|
||||||
|
#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16
|
||||||
|
#define CONFIG_FREERTOS_USE_TIMERS 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc"
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048
|
||||||
|
#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10
|
||||||
|
#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0
|
||||||
|
#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1
|
||||||
|
#define CONFIG_FREERTOS_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 2
|
||||||
|
#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1
|
||||||
|
#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2
|
||||||
|
#define CONFIG_HAL_WDT_USE_ROM_IMPL 1
|
||||||
|
#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_DYNAMIC_LEVEL_CONTROL 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31
|
||||||
|
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
|
||||||
|
#define CONFIG_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_HPM_AUTO 1
|
||||||
|
#define CONFIG_SPI_FLASH_HPM_ON 1
|
||||||
|
#define CONFIG_SPI_FLASH_HPM_DC_AUTO 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_SUPPORT_MXIC_OPI_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_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
|
||||||
|
#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
|
||||||
|
#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7
|
||||||
|
#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE
|
||||||
|
#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY
|
||||||
|
#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160
|
||||||
|
#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
|
||||||
|
#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES
|
||||||
|
#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC
|
||||||
|
#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT
|
||||||
|
#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT
|
||||||
|
#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY
|
||||||
|
#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_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1
|
||||||
|
#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS
|
||||||
|
#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE
|
||||||
|
#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL
|
||||||
|
#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO
|
||||||
|
#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE
|
||||||
|
#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD
|
||||||
|
#define CONFIG_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_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1
|
||||||
|
#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S
|
||||||
|
#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH
|
||||||
|
#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY
|
||||||
|
#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH
|
||||||
788
build/bootloader/config/sdkconfig.json
Normal file
788
build/bootloader/config/sdkconfig.json
Normal file
@ -0,0 +1,788 @@
|
|||||||
|
{
|
||||||
|
"APP_BUILD_BOOTLOADER": true,
|
||||||
|
"APP_BUILD_GENERATE_BINARIES": true,
|
||||||
|
"APP_BUILD_TYPE_APP_2NDBOOT": true,
|
||||||
|
"APP_BUILD_TYPE_RAM": false,
|
||||||
|
"APP_BUILD_USE_FLASH_SECTIONS": true,
|
||||||
|
"APP_COMPILE_TIME_DATE": true,
|
||||||
|
"APP_EXCLUDE_PROJECT_NAME_VAR": false,
|
||||||
|
"APP_EXCLUDE_PROJECT_VER_VAR": false,
|
||||||
|
"APP_NO_BLOBS": false,
|
||||||
|
"APP_PROJECT_VER_FROM_CONFIG": false,
|
||||||
|
"APP_REPRODUCIBLE_BUILD": false,
|
||||||
|
"APP_RETRIEVE_LEN_ELF_SHA": 9,
|
||||||
|
"BOOTLOADER_APP_ROLLBACK_ENABLE": false,
|
||||||
|
"BOOTLOADER_APP_TEST": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true,
|
||||||
|
"BOOTLOADER_COMPILE_TIME_DATE": true,
|
||||||
|
"BOOTLOADER_CUSTOM_RESERVE_RTC": false,
|
||||||
|
"BOOTLOADER_FACTORY_RESET": false,
|
||||||
|
"BOOTLOADER_FLASH_DC_AWARE": false,
|
||||||
|
"BOOTLOADER_FLASH_XMC_SUPPORT": true,
|
||||||
|
"BOOTLOADER_LOG_COLORS": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL": 3,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_DEBUG": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_ERROR": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_INFO": true,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_NONE": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_VERBOSE": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_WARN": false,
|
||||||
|
"BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true,
|
||||||
|
"BOOTLOADER_OFFSET_IN_FLASH": 0,
|
||||||
|
"BOOTLOADER_PROJECT_VER": 1,
|
||||||
|
"BOOTLOADER_REGION_PROTECTION_ENABLE": true,
|
||||||
|
"BOOTLOADER_RESERVE_RTC_SIZE": 0,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_ALWAYS": false,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false,
|
||||||
|
"BOOTLOADER_VDDSDIO_BOOST_1_9V": true,
|
||||||
|
"BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false,
|
||||||
|
"BOOTLOADER_WDT_ENABLE": true,
|
||||||
|
"BOOTLOADER_WDT_TIME_MS": 9000,
|
||||||
|
"BOOT_ROM_LOG_ALWAYS_OFF": false,
|
||||||
|
"BOOT_ROM_LOG_ALWAYS_ON": true,
|
||||||
|
"BOOT_ROM_LOG_ON_GPIO_HIGH": false,
|
||||||
|
"BOOT_ROM_LOG_ON_GPIO_LOW": false,
|
||||||
|
"COMPILER_ASSERT_NDEBUG_EVALUATE": true,
|
||||||
|
"COMPILER_CXX_EXCEPTIONS": false,
|
||||||
|
"COMPILER_CXX_RTTI": false,
|
||||||
|
"COMPILER_DISABLE_DEFAULT_ERRORS": true,
|
||||||
|
"COMPILER_DISABLE_GCC12_WARNINGS": false,
|
||||||
|
"COMPILER_DISABLE_GCC13_WARNINGS": false,
|
||||||
|
"COMPILER_DISABLE_GCC14_WARNINGS": false,
|
||||||
|
"COMPILER_DUMP_RTL_FILES": false,
|
||||||
|
"COMPILER_FLOAT_LIB_FROM_GCCLIB": true,
|
||||||
|
"COMPILER_HIDE_PATHS_MACROS": true,
|
||||||
|
"COMPILER_NO_MERGE_CONSTANTS": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2,
|
||||||
|
"COMPILER_OPTIMIZATION_CHECKS_SILENT": false,
|
||||||
|
"COMPILER_OPTIMIZATION_DEBUG": true,
|
||||||
|
"COMPILER_OPTIMIZATION_NONE": false,
|
||||||
|
"COMPILER_OPTIMIZATION_PERF": false,
|
||||||
|
"COMPILER_OPTIMIZATION_SIZE": false,
|
||||||
|
"COMPILER_ORPHAN_SECTIONS_PLACE": false,
|
||||||
|
"COMPILER_ORPHAN_SECTIONS_WARNING": true,
|
||||||
|
"COMPILER_RT_LIB_GCCLIB": true,
|
||||||
|
"COMPILER_RT_LIB_NAME": "gcc",
|
||||||
|
"COMPILER_STACK_CHECK_MODE_ALL": false,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_NONE": true,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_NORM": false,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_STRONG": false,
|
||||||
|
"COMPILER_STATIC_ANALYZER": false,
|
||||||
|
"COMPILER_WARN_WRITE_STRINGS": false,
|
||||||
|
"EFUSE_CUSTOM_TABLE": false,
|
||||||
|
"EFUSE_MAX_BLK_LEN": 256,
|
||||||
|
"EFUSE_VIRTUAL": false,
|
||||||
|
"ESP32S3_DATA_CACHE_16KB": false,
|
||||||
|
"ESP32S3_DATA_CACHE_32KB": true,
|
||||||
|
"ESP32S3_DATA_CACHE_4WAYS": false,
|
||||||
|
"ESP32S3_DATA_CACHE_64KB": false,
|
||||||
|
"ESP32S3_DATA_CACHE_8WAYS": true,
|
||||||
|
"ESP32S3_DATA_CACHE_LINE_16B": false,
|
||||||
|
"ESP32S3_DATA_CACHE_LINE_32B": true,
|
||||||
|
"ESP32S3_DATA_CACHE_LINE_64B": false,
|
||||||
|
"ESP32S3_DATA_CACHE_LINE_SIZE": 32,
|
||||||
|
"ESP32S3_DATA_CACHE_SIZE": 32768,
|
||||||
|
"ESP32S3_DCACHE_ASSOCIATED_WAYS": 8,
|
||||||
|
"ESP32S3_ICACHE_ASSOCIATED_WAYS": 8,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_16KB": true,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_32KB": false,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_4WAYS": false,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_8WAYS": true,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_LINE_16B": false,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_LINE_32B": true,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE": 32,
|
||||||
|
"ESP32S3_INSTRUCTION_CACHE_SIZE": 16384,
|
||||||
|
"ESP32S3_REV_MAX_FULL": 99,
|
||||||
|
"ESP32S3_REV_MIN_0": true,
|
||||||
|
"ESP32S3_REV_MIN_1": false,
|
||||||
|
"ESP32S3_REV_MIN_2": false,
|
||||||
|
"ESP32S3_REV_MIN_FULL": 0,
|
||||||
|
"ESP32S3_RTCDATA_IN_FAST_MEM": false,
|
||||||
|
"ESP32S3_TRACEMEM_RESERVE_DRAM": 0,
|
||||||
|
"ESP32S3_TRAX": false,
|
||||||
|
"ESP32S3_UNIVERSAL_MAC_ADDRESSES": 4,
|
||||||
|
"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
|
||||||
|
"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO": false,
|
||||||
|
"ESP32S3_USE_FIXED_STATIC_RAM_SIZE": false,
|
||||||
|
"ESPTOOLPY_AFTER": "hard_reset",
|
||||||
|
"ESPTOOLPY_AFTER_NORESET": false,
|
||||||
|
"ESPTOOLPY_AFTER_RESET": true,
|
||||||
|
"ESPTOOLPY_BEFORE": "default_reset",
|
||||||
|
"ESPTOOLPY_BEFORE_NORESET": false,
|
||||||
|
"ESPTOOLPY_BEFORE_RESET": true,
|
||||||
|
"ESPTOOLPY_FLASHFREQ": "80m",
|
||||||
|
"ESPTOOLPY_FLASHFREQ_120M": false,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_20M": false,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_40M": false,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_80M": true,
|
||||||
|
"ESPTOOLPY_FLASHMODE": "dio",
|
||||||
|
"ESPTOOLPY_FLASHMODE_DIO": true,
|
||||||
|
"ESPTOOLPY_FLASHMODE_DOUT": false,
|
||||||
|
"ESPTOOLPY_FLASHMODE_QIO": false,
|
||||||
|
"ESPTOOLPY_FLASHMODE_QOUT": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE": "2MB",
|
||||||
|
"ESPTOOLPY_FLASHSIZE_128MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_16MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_1MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_2MB": true,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_32MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_4MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_64MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_8MB": false,
|
||||||
|
"ESPTOOLPY_FLASH_MODE_AUTO_DETECT": true,
|
||||||
|
"ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true,
|
||||||
|
"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false,
|
||||||
|
"ESPTOOLPY_MONITOR_BAUD": 115200,
|
||||||
|
"ESPTOOLPY_NO_STUB": false,
|
||||||
|
"ESPTOOLPY_OCT_FLASH": false,
|
||||||
|
"ESP_BROWNOUT_DET": true,
|
||||||
|
"ESP_BROWNOUT_DET_LVL": 7,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_1": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_2": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_3": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_4": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_5": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_6": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_7": true,
|
||||||
|
"ESP_CONSOLE_NONE": false,
|
||||||
|
"ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0,
|
||||||
|
"ESP_CONSOLE_SECONDARY_NONE": false,
|
||||||
|
"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true,
|
||||||
|
"ESP_CONSOLE_UART": true,
|
||||||
|
"ESP_CONSOLE_UART_BAUDRATE": 115200,
|
||||||
|
"ESP_CONSOLE_UART_CUSTOM": false,
|
||||||
|
"ESP_CONSOLE_UART_DEFAULT": true,
|
||||||
|
"ESP_CONSOLE_UART_NUM": 0,
|
||||||
|
"ESP_CONSOLE_USB_CDC": false,
|
||||||
|
"ESP_CONSOLE_USB_SERIAL_JTAG": false,
|
||||||
|
"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true,
|
||||||
|
"ESP_DEBUG_OCDAWARE": true,
|
||||||
|
"ESP_DEBUG_STUBS_ENABLE": false,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ": 160,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_160": true,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_240": false,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_80": false,
|
||||||
|
"ESP_EFUSE_BLOCK_REV_MAX_FULL": 199,
|
||||||
|
"ESP_EFUSE_BLOCK_REV_MIN_FULL": 0,
|
||||||
|
"ESP_ERR_TO_NAME_LOOKUP": true,
|
||||||
|
"ESP_INT_WDT": true,
|
||||||
|
"ESP_INT_WDT_CHECK_CPU1": true,
|
||||||
|
"ESP_INT_WDT_TIMEOUT_MS": 300,
|
||||||
|
"ESP_IPC_ISR_ENABLE": true,
|
||||||
|
"ESP_IPC_TASK_STACK_SIZE": 1280,
|
||||||
|
"ESP_IPC_USES_CALLERS_PRIORITY": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_BT": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_ETH": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true,
|
||||||
|
"ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4,
|
||||||
|
"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
|
||||||
|
"ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY": 0,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_CPU0": true,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_CPU1": false,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false,
|
||||||
|
"ESP_MAIN_TASK_STACK_SIZE": 3584,
|
||||||
|
"ESP_MINIMAL_SHARED_STACK_SIZE": 2048,
|
||||||
|
"ESP_PANIC_HANDLER_IRAM": false,
|
||||||
|
"ESP_REV_MAX_FULL": 99,
|
||||||
|
"ESP_REV_MIN_FULL": 0,
|
||||||
|
"ESP_ROM_GET_CLK_FREQ": true,
|
||||||
|
"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG": true,
|
||||||
|
"ESP_ROM_HAS_CACHE_WRITEBACK_BUG": true,
|
||||||
|
"ESP_ROM_HAS_CRC_BE": true,
|
||||||
|
"ESP_ROM_HAS_CRC_LE": true,
|
||||||
|
"ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true,
|
||||||
|
"ESP_ROM_HAS_ERASE_0_REGION_BUG": true,
|
||||||
|
"ESP_ROM_HAS_ETS_PRINTF_BUG": true,
|
||||||
|
"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG": true,
|
||||||
|
"ESP_ROM_HAS_HAL_WDT": true,
|
||||||
|
"ESP_ROM_HAS_JPEG_DECODE": true,
|
||||||
|
"ESP_ROM_HAS_LAYOUT_TABLE": true,
|
||||||
|
"ESP_ROM_HAS_MZ_CRC32": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB_32BIT_TIME": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true,
|
||||||
|
"ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true,
|
||||||
|
"ESP_ROM_HAS_RETARGETABLE_LOCKING": true,
|
||||||
|
"ESP_ROM_HAS_SPI_FLASH": true,
|
||||||
|
"ESP_ROM_HAS_SW_FLOAT": true,
|
||||||
|
"ESP_ROM_HAS_VERSION": true,
|
||||||
|
"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true,
|
||||||
|
"ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true,
|
||||||
|
"ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true,
|
||||||
|
"ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true,
|
||||||
|
"ESP_ROM_UART_CLK_IS_XTAL": true,
|
||||||
|
"ESP_ROM_USB_OTG_NUM": 3,
|
||||||
|
"ESP_ROM_USB_SERIAL_DEVICE_NUM": 4,
|
||||||
|
"ESP_SLEEP_CACHE_SAFE_ASSERTION": false,
|
||||||
|
"ESP_SLEEP_DEBUG": false,
|
||||||
|
"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true,
|
||||||
|
"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true,
|
||||||
|
"ESP_SLEEP_GPIO_RESET_WORKAROUND": true,
|
||||||
|
"ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true,
|
||||||
|
"ESP_SLEEP_POWER_DOWN_FLASH": false,
|
||||||
|
"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true,
|
||||||
|
"ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000,
|
||||||
|
"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true,
|
||||||
|
"ESP_SYSTEM_BBPLL_RECALIB": true,
|
||||||
|
"ESP_SYSTEM_BROWNOUT_INTR": true,
|
||||||
|
"ESP_SYSTEM_CHECK_INT_LEVEL_4": true,
|
||||||
|
"ESP_SYSTEM_EVENT_QUEUE_SIZE": 32,
|
||||||
|
"ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304,
|
||||||
|
"ESP_SYSTEM_MEMPROT_FEATURE": true,
|
||||||
|
"ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true,
|
||||||
|
"ESP_SYSTEM_PANIC_PRINT_HALT": false,
|
||||||
|
"ESP_SYSTEM_PANIC_PRINT_REBOOT": true,
|
||||||
|
"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0,
|
||||||
|
"ESP_SYSTEM_PANIC_SILENT_REBOOT": false,
|
||||||
|
"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true,
|
||||||
|
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true,
|
||||||
|
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true,
|
||||||
|
"ESP_TASK_WDT_EN": true,
|
||||||
|
"ESP_TASK_WDT_INIT": true,
|
||||||
|
"ESP_TASK_WDT_PANIC": false,
|
||||||
|
"ESP_TASK_WDT_TIMEOUT_S": 5,
|
||||||
|
"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true,
|
||||||
|
"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_CANARY": true,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_NONE": false,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false,
|
||||||
|
"FREERTOS_CORETIMER_SYSTIMER_LVL1": true,
|
||||||
|
"FREERTOS_CORETIMER_SYSTIMER_LVL3": false,
|
||||||
|
"FREERTOS_DEBUG_OCDAWARE": true,
|
||||||
|
"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false,
|
||||||
|
"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false,
|
||||||
|
"FREERTOS_ENABLE_TASK_SNAPSHOT": true,
|
||||||
|
"FREERTOS_FPU_IN_ISR": false,
|
||||||
|
"FREERTOS_GENERATE_RUN_TIME_STATS": false,
|
||||||
|
"FREERTOS_HZ": 100,
|
||||||
|
"FREERTOS_IDLE_TASK_STACKSIZE": 1536,
|
||||||
|
"FREERTOS_INTERRUPT_BACKTRACE": true,
|
||||||
|
"FREERTOS_ISR_STACKSIZE": 1536,
|
||||||
|
"FREERTOS_MAX_TASK_NAME_LEN": 16,
|
||||||
|
"FREERTOS_NO_AFFINITY": 2147483647,
|
||||||
|
"FREERTOS_NUMBER_OF_CORES": 2,
|
||||||
|
"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false,
|
||||||
|
"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true,
|
||||||
|
"FREERTOS_PORT": true,
|
||||||
|
"FREERTOS_QUEUE_REGISTRY_SIZE": 0,
|
||||||
|
"FREERTOS_SMP": false,
|
||||||
|
"FREERTOS_SUPPORT_STATIC_ALLOCATION": true,
|
||||||
|
"FREERTOS_SYSTICK_USES_SYSTIMER": true,
|
||||||
|
"FREERTOS_TASK_FUNCTION_WRAPPER": true,
|
||||||
|
"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1,
|
||||||
|
"FREERTOS_TASK_PRE_DELETION_HOOK": false,
|
||||||
|
"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1,
|
||||||
|
"FREERTOS_TICK_SUPPORT_SYSTIMER": true,
|
||||||
|
"FREERTOS_TIMER_QUEUE_LENGTH": 10,
|
||||||
|
"FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647,
|
||||||
|
"FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc",
|
||||||
|
"FREERTOS_TIMER_TASK_AFFINITY_CPU0": false,
|
||||||
|
"FREERTOS_TIMER_TASK_AFFINITY_CPU1": false,
|
||||||
|
"FREERTOS_TIMER_TASK_NO_AFFINITY": true,
|
||||||
|
"FREERTOS_TIMER_TASK_PRIORITY": 1,
|
||||||
|
"FREERTOS_TIMER_TASK_STACK_DEPTH": 2048,
|
||||||
|
"FREERTOS_TLSP_DELETION_CALLBACKS": true,
|
||||||
|
"FREERTOS_UNICORE": false,
|
||||||
|
"FREERTOS_USE_APPLICATION_TASK_TAG": false,
|
||||||
|
"FREERTOS_USE_IDLE_HOOK": false,
|
||||||
|
"FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false,
|
||||||
|
"FREERTOS_USE_TICK_HOOK": false,
|
||||||
|
"FREERTOS_USE_TIMERS": true,
|
||||||
|
"FREERTOS_USE_TRACE_FACILITY": false,
|
||||||
|
"FREERTOS_WATCHPOINT_END_OF_STACK": false,
|
||||||
|
"GDMA_CTRL_FUNC_IN_IRAM": true,
|
||||||
|
"GDMA_ENABLE_DEBUG_LOG": false,
|
||||||
|
"GDMA_ISR_IRAM_SAFE": false,
|
||||||
|
"HAL_ASSERTION_DISABLE": false,
|
||||||
|
"HAL_ASSERTION_ENABLE": false,
|
||||||
|
"HAL_ASSERTION_EQUALS_SYSTEM": true,
|
||||||
|
"HAL_ASSERTION_SILENT": false,
|
||||||
|
"HAL_DEFAULT_ASSERTION_LEVEL": 2,
|
||||||
|
"HAL_WDT_USE_ROM_IMPL": true,
|
||||||
|
"IDF_CMAKE": true,
|
||||||
|
"IDF_EXPERIMENTAL_FEATURES": false,
|
||||||
|
"IDF_FIRMWARE_CHIP_ID": 9,
|
||||||
|
"IDF_INIT_VERSION": "5.4.1",
|
||||||
|
"IDF_TARGET": "esp32s3",
|
||||||
|
"IDF_TARGET_ARCH": "xtensa",
|
||||||
|
"IDF_TARGET_ARCH_XTENSA": true,
|
||||||
|
"IDF_TARGET_ESP32S3": true,
|
||||||
|
"IDF_TOOLCHAIN": "gcc",
|
||||||
|
"IDF_TOOLCHAIN_GCC": true,
|
||||||
|
"LOG_COLORS": false,
|
||||||
|
"LOG_DEFAULT_LEVEL": 3,
|
||||||
|
"LOG_DEFAULT_LEVEL_DEBUG": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_ERROR": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_INFO": true,
|
||||||
|
"LOG_DEFAULT_LEVEL_NONE": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_VERBOSE": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_WARN": false,
|
||||||
|
"LOG_DYNAMIC_LEVEL_CONTROL": true,
|
||||||
|
"LOG_MASTER_LEVEL": false,
|
||||||
|
"LOG_MAXIMUM_EQUALS_DEFAULT": true,
|
||||||
|
"LOG_MAXIMUM_LEVEL": 3,
|
||||||
|
"LOG_MAXIMUM_LEVEL_DEBUG": false,
|
||||||
|
"LOG_MAXIMUM_LEVEL_VERBOSE": false,
|
||||||
|
"LOG_TAG_LEVEL_CACHE_ARRAY": false,
|
||||||
|
"LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_LINKED_LIST": false,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_NONE": false,
|
||||||
|
"LOG_TIMESTAMP_SOURCE_RTOS": true,
|
||||||
|
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
|
||||||
|
"MMU_PAGE_MODE": "64KB",
|
||||||
|
"MMU_PAGE_SIZE": 65536,
|
||||||
|
"MMU_PAGE_SIZE_64KB": true,
|
||||||
|
"NEWLIB_NANO_FORMAT": false,
|
||||||
|
"NEWLIB_STDIN_LINE_ENDING_CR": true,
|
||||||
|
"NEWLIB_STDIN_LINE_ENDING_CRLF": false,
|
||||||
|
"NEWLIB_STDIN_LINE_ENDING_LF": false,
|
||||||
|
"NEWLIB_STDOUT_LINE_ENDING_CR": false,
|
||||||
|
"NEWLIB_STDOUT_LINE_ENDING_CRLF": true,
|
||||||
|
"NEWLIB_STDOUT_LINE_ENDING_LF": false,
|
||||||
|
"NEWLIB_TIME_SYSCALL_USE_HRT": false,
|
||||||
|
"NEWLIB_TIME_SYSCALL_USE_NONE": false,
|
||||||
|
"NEWLIB_TIME_SYSCALL_USE_RTC": false,
|
||||||
|
"NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true,
|
||||||
|
"PARTITION_TABLE_CUSTOM": false,
|
||||||
|
"PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv",
|
||||||
|
"PARTITION_TABLE_FILENAME": "partitions_singleapp.csv",
|
||||||
|
"PARTITION_TABLE_MD5": true,
|
||||||
|
"PARTITION_TABLE_OFFSET": 32768,
|
||||||
|
"PARTITION_TABLE_SINGLE_APP": true,
|
||||||
|
"PARTITION_TABLE_SINGLE_APP_LARGE": false,
|
||||||
|
"PARTITION_TABLE_TWO_OTA": false,
|
||||||
|
"PARTITION_TABLE_TWO_OTA_LARGE": false,
|
||||||
|
"PERIPH_CTRL_FUNC_IN_IRAM": true,
|
||||||
|
"RTC_CLK_CAL_CYCLES": 1024,
|
||||||
|
"RTC_CLK_SRC_EXT_CRYS": false,
|
||||||
|
"RTC_CLK_SRC_EXT_OSC": false,
|
||||||
|
"RTC_CLK_SRC_INT_8MD256": false,
|
||||||
|
"RTC_CLK_SRC_INT_RC": true,
|
||||||
|
"SECURE_BOOT": false,
|
||||||
|
"SECURE_BOOT_V2_PREFERRED": true,
|
||||||
|
"SECURE_BOOT_V2_RSA_SUPPORTED": true,
|
||||||
|
"SECURE_FLASH_ENC_ENABLED": false,
|
||||||
|
"SECURE_ROM_DL_MODE_ENABLED": true,
|
||||||
|
"SECURE_SIGNED_APPS_NO_SECURE_BOOT": false,
|
||||||
|
"SOC_ADC_ARBITER_SUPPORTED": true,
|
||||||
|
"SOC_ADC_ATTEN_NUM": 4,
|
||||||
|
"SOC_ADC_CALIBRATION_V1_SUPPORTED": true,
|
||||||
|
"SOC_ADC_DIGI_CONTROLLER_NUM": 2,
|
||||||
|
"SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4,
|
||||||
|
"SOC_ADC_DIGI_IIR_FILTER_NUM": 2,
|
||||||
|
"SOC_ADC_DIGI_MAX_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_DIGI_MIN_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_DIGI_MONITOR_NUM": 2,
|
||||||
|
"SOC_ADC_DIGI_RESULT_BYTES": 4,
|
||||||
|
"SOC_ADC_DIG_CTRL_SUPPORTED": true,
|
||||||
|
"SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true,
|
||||||
|
"SOC_ADC_DMA_SUPPORTED": true,
|
||||||
|
"SOC_ADC_MAX_CHANNEL_NUM": 10,
|
||||||
|
"SOC_ADC_MONITOR_SUPPORTED": true,
|
||||||
|
"SOC_ADC_PATT_LEN_MAX": 24,
|
||||||
|
"SOC_ADC_PERIPH_NUM": 2,
|
||||||
|
"SOC_ADC_RTC_CTRL_SUPPORTED": true,
|
||||||
|
"SOC_ADC_RTC_MAX_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_RTC_MIN_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333,
|
||||||
|
"SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611,
|
||||||
|
"SOC_ADC_SELF_HW_CALI_SUPPORTED": true,
|
||||||
|
"SOC_ADC_SHARED_POWER": true,
|
||||||
|
"SOC_ADC_SUPPORTED": true,
|
||||||
|
"SOC_AES_GDMA": true,
|
||||||
|
"SOC_AES_SUPPORTED": true,
|
||||||
|
"SOC_AES_SUPPORT_AES_128": true,
|
||||||
|
"SOC_AES_SUPPORT_AES_256": true,
|
||||||
|
"SOC_AES_SUPPORT_DMA": true,
|
||||||
|
"SOC_AHB_GDMA_SUPPORTED": true,
|
||||||
|
"SOC_AHB_GDMA_SUPPORT_PSRAM": true,
|
||||||
|
"SOC_AHB_GDMA_VERSION": 1,
|
||||||
|
"SOC_APB_BACKUP_DMA": true,
|
||||||
|
"SOC_APPCPU_HAS_CLOCK_GATING_BUG": true,
|
||||||
|
"SOC_ASYNC_MEMCPY_SUPPORTED": true,
|
||||||
|
"SOC_BLE_50_SUPPORTED": true,
|
||||||
|
"SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true,
|
||||||
|
"SOC_BLE_MESH_SUPPORTED": true,
|
||||||
|
"SOC_BLE_SUPPORTED": true,
|
||||||
|
"SOC_BLUFI_SUPPORTED": true,
|
||||||
|
"SOC_BOD_SUPPORTED": true,
|
||||||
|
"SOC_BROWNOUT_RESET_SUPPORTED": true,
|
||||||
|
"SOC_BT_SUPPORTED": true,
|
||||||
|
"SOC_CACHE_FREEZE_SUPPORTED": true,
|
||||||
|
"SOC_CACHE_SUPPORT_WRAP": true,
|
||||||
|
"SOC_CACHE_WRITEBACK_SUPPORTED": true,
|
||||||
|
"SOC_CCOMP_TIMER_SUPPORTED": true,
|
||||||
|
"SOC_CLK_RC_FAST_D256_SUPPORTED": true,
|
||||||
|
"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true,
|
||||||
|
"SOC_CLK_TREE_SUPPORTED": true,
|
||||||
|
"SOC_CLK_XTAL32K_SUPPORTED": true,
|
||||||
|
"SOC_COEX_HW_PTI": true,
|
||||||
|
"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true,
|
||||||
|
"SOC_CPU_BREAKPOINTS_NUM": 2,
|
||||||
|
"SOC_CPU_CORES_NUM": 2,
|
||||||
|
"SOC_CPU_HAS_FPU": true,
|
||||||
|
"SOC_CPU_INTR_NUM": 32,
|
||||||
|
"SOC_CPU_WATCHPOINTS_NUM": 2,
|
||||||
|
"SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64,
|
||||||
|
"SOC_DEDICATED_GPIO_SUPPORTED": true,
|
||||||
|
"SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8,
|
||||||
|
"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE": true,
|
||||||
|
"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8,
|
||||||
|
"SOC_DEEP_SLEEP_SUPPORTED": true,
|
||||||
|
"SOC_DIG_SIGN_SUPPORTED": true,
|
||||||
|
"SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100,
|
||||||
|
"SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16,
|
||||||
|
"SOC_DS_SIGNATURE_MAX_BIT_LEN": 4096,
|
||||||
|
"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true,
|
||||||
|
"SOC_EFUSE_DIS_DIRECT_BOOT": true,
|
||||||
|
"SOC_EFUSE_DIS_DOWNLOAD_DCACHE": true,
|
||||||
|
"SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true,
|
||||||
|
"SOC_EFUSE_DIS_ICACHE": true,
|
||||||
|
"SOC_EFUSE_DIS_USB_JTAG": true,
|
||||||
|
"SOC_EFUSE_HARD_DIS_JTAG": true,
|
||||||
|
"SOC_EFUSE_KEY_PURPOSE_FIELD": true,
|
||||||
|
"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true,
|
||||||
|
"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3,
|
||||||
|
"SOC_EFUSE_SOFT_DIS_JTAG": true,
|
||||||
|
"SOC_EFUSE_SUPPORTED": true,
|
||||||
|
"SOC_EXTERNAL_COEX_LEADER_TX_LINE": true,
|
||||||
|
"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64,
|
||||||
|
"SOC_FLASH_ENCRYPTION_XTS_AES": true,
|
||||||
|
"SOC_FLASH_ENCRYPTION_XTS_AES_128": true,
|
||||||
|
"SOC_FLASH_ENCRYPTION_XTS_AES_256": true,
|
||||||
|
"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS": true,
|
||||||
|
"SOC_FLASH_ENC_SUPPORTED": true,
|
||||||
|
"SOC_GDMA_NUM_GROUPS_MAX": 1,
|
||||||
|
"SOC_GDMA_PAIRS_PER_GROUP": 5,
|
||||||
|
"SOC_GDMA_PAIRS_PER_GROUP_MAX": 5,
|
||||||
|
"SOC_GDMA_SUPPORTED": true,
|
||||||
|
"SOC_GPIO_CLOCKOUT_BY_IO_MUX": true,
|
||||||
|
"SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3,
|
||||||
|
"SOC_GPIO_FILTER_CLK_SUPPORT_APB": true,
|
||||||
|
"SOC_GPIO_IN_RANGE_MAX": 48,
|
||||||
|
"SOC_GPIO_OUT_RANGE_MAX": 48,
|
||||||
|
"SOC_GPIO_PIN_COUNT": 49,
|
||||||
|
"SOC_GPIO_PORT": 1,
|
||||||
|
"SOC_GPIO_SUPPORT_FORCE_HOLD": true,
|
||||||
|
"SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true,
|
||||||
|
"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true,
|
||||||
|
"SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true,
|
||||||
|
"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448,
|
||||||
|
"SOC_GPIO_VALID_GPIO_MASK": 562949953421311,
|
||||||
|
"SOC_GPSPI_SUPPORTED": true,
|
||||||
|
"SOC_GPTIMER_SUPPORTED": true,
|
||||||
|
"SOC_HMAC_SUPPORTED": true,
|
||||||
|
"SOC_HP_CPU_HAS_MULTIPLE_CORES": true,
|
||||||
|
"SOC_HP_I2C_NUM": 2,
|
||||||
|
"SOC_I2C_CMD_REG_NUM": 8,
|
||||||
|
"SOC_I2C_FIFO_LEN": 32,
|
||||||
|
"SOC_I2C_NUM": 2,
|
||||||
|
"SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true,
|
||||||
|
"SOC_I2C_SLAVE_SUPPORT_BROADCAST": true,
|
||||||
|
"SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true,
|
||||||
|
"SOC_I2C_SUPPORTED": true,
|
||||||
|
"SOC_I2C_SUPPORT_10BIT_ADDR": true,
|
||||||
|
"SOC_I2C_SUPPORT_HW_CLR_BUS": true,
|
||||||
|
"SOC_I2C_SUPPORT_RTC": true,
|
||||||
|
"SOC_I2C_SUPPORT_SLAVE": true,
|
||||||
|
"SOC_I2C_SUPPORT_XTAL": true,
|
||||||
|
"SOC_I2S_HW_VERSION_2": true,
|
||||||
|
"SOC_I2S_NUM": 2,
|
||||||
|
"SOC_I2S_PDM_MAX_RX_LINES": 4,
|
||||||
|
"SOC_I2S_PDM_MAX_TX_LINES": 2,
|
||||||
|
"SOC_I2S_SUPPORTED": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PCM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM_RX": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM_TX": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PLL_F160M": true,
|
||||||
|
"SOC_I2S_SUPPORTS_TDM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_XTAL": true,
|
||||||
|
"SOC_LCDCAM_I80_BUS_WIDTH": 16,
|
||||||
|
"SOC_LCDCAM_I80_LCD_SUPPORTED": true,
|
||||||
|
"SOC_LCDCAM_I80_NUM_BUSES": 1,
|
||||||
|
"SOC_LCDCAM_RGB_DATA_WIDTH": 16,
|
||||||
|
"SOC_LCDCAM_RGB_LCD_SUPPORTED": true,
|
||||||
|
"SOC_LCDCAM_RGB_NUM_PANELS": 1,
|
||||||
|
"SOC_LCDCAM_SUPPORTED": true,
|
||||||
|
"SOC_LCD_I80_BUSES": 1,
|
||||||
|
"SOC_LCD_I80_BUS_WIDTH": 16,
|
||||||
|
"SOC_LCD_I80_SUPPORTED": true,
|
||||||
|
"SOC_LCD_RGB_DATA_WIDTH": 16,
|
||||||
|
"SOC_LCD_RGB_PANELS": 1,
|
||||||
|
"SOC_LCD_RGB_SUPPORTED": true,
|
||||||
|
"SOC_LCD_SUPPORT_RGB_YUV_CONV": true,
|
||||||
|
"SOC_LEDC_CHANNEL_NUM": 8,
|
||||||
|
"SOC_LEDC_SUPPORTED": true,
|
||||||
|
"SOC_LEDC_SUPPORT_APB_CLOCK": true,
|
||||||
|
"SOC_LEDC_SUPPORT_FADE_STOP": true,
|
||||||
|
"SOC_LEDC_SUPPORT_XTAL_CLOCK": true,
|
||||||
|
"SOC_LEDC_TIMER_BIT_WIDTH": 14,
|
||||||
|
"SOC_LEDC_TIMER_NUM": 4,
|
||||||
|
"SOC_LIGHT_SLEEP_SUPPORTED": true,
|
||||||
|
"SOC_LP_IO_CLOCK_IS_INDEPENDENT": true,
|
||||||
|
"SOC_LP_PERIPH_SHARE_INTERRUPT": true,
|
||||||
|
"SOC_LP_TIMER_BIT_WIDTH_HI": 16,
|
||||||
|
"SOC_LP_TIMER_BIT_WIDTH_LO": 32,
|
||||||
|
"SOC_MAC_BB_PD_MEM_SIZE": 192,
|
||||||
|
"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3,
|
||||||
|
"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true,
|
||||||
|
"SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2,
|
||||||
|
"SOC_MCPWM_GENERATORS_PER_OPERATOR": 2,
|
||||||
|
"SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3,
|
||||||
|
"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3,
|
||||||
|
"SOC_MCPWM_GROUPS": 2,
|
||||||
|
"SOC_MCPWM_OPERATORS_PER_GROUP": 3,
|
||||||
|
"SOC_MCPWM_SUPPORTED": true,
|
||||||
|
"SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true,
|
||||||
|
"SOC_MCPWM_TIMERS_PER_GROUP": 3,
|
||||||
|
"SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2,
|
||||||
|
"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16,
|
||||||
|
"SOC_MEMPROT_MEM_ALIGN_SIZE": 256,
|
||||||
|
"SOC_MEMPROT_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM": true,
|
||||||
|
"SOC_MEMSPI_IS_INDEPENDENT": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_120M": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY": true,
|
||||||
|
"SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1,
|
||||||
|
"SOC_MMU_PERIPH_NUM": 1,
|
||||||
|
"SOC_MPI_MEM_BLOCKS_NUM": 4,
|
||||||
|
"SOC_MPI_OPERATIONS_NUM": 3,
|
||||||
|
"SOC_MPI_SUPPORTED": true,
|
||||||
|
"SOC_MPU_MIN_REGION_SIZE": 536870912,
|
||||||
|
"SOC_MPU_REGIONS_MAX_NUM": 8,
|
||||||
|
"SOC_MPU_SUPPORTED": true,
|
||||||
|
"SOC_PCNT_CHANNELS_PER_UNIT": 2,
|
||||||
|
"SOC_PCNT_GROUPS": 1,
|
||||||
|
"SOC_PCNT_SUPPORTED": true,
|
||||||
|
"SOC_PCNT_THRES_POINT_PER_UNIT": 2,
|
||||||
|
"SOC_PCNT_UNITS_PER_GROUP": 4,
|
||||||
|
"SOC_PHY_COMBO_MODULE": true,
|
||||||
|
"SOC_PHY_DIG_REGS_MEM_SIZE": 21,
|
||||||
|
"SOC_PHY_SUPPORTED": true,
|
||||||
|
"SOC_PM_CPU_RETENTION_BY_RTCCNTL": true,
|
||||||
|
"SOC_PM_MODEM_PD_BY_SW": true,
|
||||||
|
"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true,
|
||||||
|
"SOC_PM_SUPPORTED": true,
|
||||||
|
"SOC_PM_SUPPORT_BT_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_CPU_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT0_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT1_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_MAC_BB_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_MODEM_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RC_FAST_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RTC_PERIPH_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_TAGMEM_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_VDDSDIO_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_WIFI_WAKEUP": true,
|
||||||
|
"SOC_PSRAM_DMA_CAPABLE": true,
|
||||||
|
"SOC_RISCV_COPROC_SUPPORTED": true,
|
||||||
|
"SOC_RMT_CHANNELS_PER_GROUP": 8,
|
||||||
|
"SOC_RMT_GROUPS": 1,
|
||||||
|
"SOC_RMT_MEM_WORDS_PER_CHANNEL": 48,
|
||||||
|
"SOC_RMT_RX_CANDIDATES_PER_GROUP": 4,
|
||||||
|
"SOC_RMT_SUPPORTED": true,
|
||||||
|
"SOC_RMT_SUPPORT_APB": true,
|
||||||
|
"SOC_RMT_SUPPORT_DMA": true,
|
||||||
|
"SOC_RMT_SUPPORT_RC_FAST": true,
|
||||||
|
"SOC_RMT_SUPPORT_RX_DEMODULATION": true,
|
||||||
|
"SOC_RMT_SUPPORT_RX_PINGPONG": true,
|
||||||
|
"SOC_RMT_SUPPORT_TX_ASYNC_STOP": true,
|
||||||
|
"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true,
|
||||||
|
"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true,
|
||||||
|
"SOC_RMT_SUPPORT_TX_LOOP_COUNT": true,
|
||||||
|
"SOC_RMT_SUPPORT_TX_SYNCHRO": true,
|
||||||
|
"SOC_RMT_SUPPORT_XTAL": true,
|
||||||
|
"SOC_RMT_TX_CANDIDATES_PER_GROUP": 4,
|
||||||
|
"SOC_RNG_SUPPORTED": true,
|
||||||
|
"SOC_RSA_MAX_BIT_LEN": 4096,
|
||||||
|
"SOC_RTCIO_HOLD_SUPPORTED": true,
|
||||||
|
"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true,
|
||||||
|
"SOC_RTCIO_PIN_COUNT": 22,
|
||||||
|
"SOC_RTCIO_WAKE_SUPPORTED": true,
|
||||||
|
"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128,
|
||||||
|
"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 549,
|
||||||
|
"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH": 128,
|
||||||
|
"SOC_RTC_FAST_MEM_SUPPORTED": true,
|
||||||
|
"SOC_RTC_MEM_SUPPORTED": true,
|
||||||
|
"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true,
|
||||||
|
"SOC_RTC_SLOW_MEM_SUPPORTED": true,
|
||||||
|
"SOC_SDMMC_DELAY_PHASE_NUM": 4,
|
||||||
|
"SOC_SDMMC_HOST_SUPPORTED": true,
|
||||||
|
"SOC_SDMMC_NUM_SLOTS": 2,
|
||||||
|
"SOC_SDMMC_SUPPORT_XTAL_CLOCK": true,
|
||||||
|
"SOC_SDMMC_USE_GPIO_MATRIX": true,
|
||||||
|
"SOC_SDM_CHANNELS_PER_GROUP": 8,
|
||||||
|
"SOC_SDM_CLK_SUPPORT_APB": true,
|
||||||
|
"SOC_SDM_GROUPS": true,
|
||||||
|
"SOC_SDM_SUPPORTED": true,
|
||||||
|
"SOC_SECURE_BOOT_SUPPORTED": true,
|
||||||
|
"SOC_SECURE_BOOT_V2_RSA": true,
|
||||||
|
"SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968,
|
||||||
|
"SOC_SHA_GDMA": true,
|
||||||
|
"SOC_SHA_SUPPORTED": true,
|
||||||
|
"SOC_SHA_SUPPORT_DMA": true,
|
||||||
|
"SOC_SHA_SUPPORT_RESUME": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA1": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA224": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA256": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA384": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA512": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA512_224": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA512_256": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA512_T": true,
|
||||||
|
"SOC_SIMD_INSTRUCTION_SUPPORTED": true,
|
||||||
|
"SOC_SIMD_PREFERRED_DATA_ALIGNMENT": 16,
|
||||||
|
"SOC_SPIRAM_SUPPORTED": true,
|
||||||
|
"SOC_SPIRAM_XIP_SUPPORTED": true,
|
||||||
|
"SOC_SPI_FLASH_SUPPORTED": true,
|
||||||
|
"SOC_SPI_MAXIMUM_BUFFER_SIZE": 64,
|
||||||
|
"SOC_SPI_MAX_CS_NUM": 6,
|
||||||
|
"SOC_SPI_MAX_PRE_DIVIDER": 16,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_OPI_MODE": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_TIMING_TUNING": true,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_WRAP": true,
|
||||||
|
"SOC_SPI_PERIPH_NUM": 3,
|
||||||
|
"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true,
|
||||||
|
"SOC_SPI_SCT_BUFFER_NUM_MAX": true,
|
||||||
|
"SOC_SPI_SCT_CONF_BITLEN_MAX": 262138,
|
||||||
|
"SOC_SPI_SCT_REG_NUM": 14,
|
||||||
|
"SOC_SPI_SCT_SUPPORTED": true,
|
||||||
|
"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true,
|
||||||
|
"SOC_SPI_SUPPORT_CD_SIG": true,
|
||||||
|
"SOC_SPI_SUPPORT_CLK_APB": true,
|
||||||
|
"SOC_SPI_SUPPORT_CLK_XTAL": true,
|
||||||
|
"SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true,
|
||||||
|
"SOC_SPI_SUPPORT_DDRCLK": true,
|
||||||
|
"SOC_SPI_SUPPORT_OCT": true,
|
||||||
|
"SOC_SPI_SUPPORT_SLAVE_HD_VER2": true,
|
||||||
|
"SOC_SUPPORTS_SECURE_DL_MODE": true,
|
||||||
|
"SOC_SUPPORT_COEXISTENCE": true,
|
||||||
|
"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true,
|
||||||
|
"SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true,
|
||||||
|
"SOC_SYSTIMER_ALARM_NUM": 3,
|
||||||
|
"SOC_SYSTIMER_BIT_WIDTH_HI": 20,
|
||||||
|
"SOC_SYSTIMER_BIT_WIDTH_LO": 32,
|
||||||
|
"SOC_SYSTIMER_COUNTER_NUM": 2,
|
||||||
|
"SOC_SYSTIMER_FIXED_DIVIDER": true,
|
||||||
|
"SOC_SYSTIMER_INT_LEVEL": true,
|
||||||
|
"SOC_SYSTIMER_SUPPORTED": true,
|
||||||
|
"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true,
|
||||||
|
"SOC_TEMP_SENSOR_SUPPORTED": true,
|
||||||
|
"SOC_TIMER_GROUPS": 2,
|
||||||
|
"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54,
|
||||||
|
"SOC_TIMER_GROUP_SUPPORT_APB": true,
|
||||||
|
"SOC_TIMER_GROUP_SUPPORT_XTAL": true,
|
||||||
|
"SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2,
|
||||||
|
"SOC_TIMER_GROUP_TOTAL_TIMERS": 4,
|
||||||
|
"SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3,
|
||||||
|
"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true,
|
||||||
|
"SOC_TOUCH_SAMPLE_CFG_NUM": 1,
|
||||||
|
"SOC_TOUCH_SENSOR_NUM": 15,
|
||||||
|
"SOC_TOUCH_SENSOR_SUPPORTED": true,
|
||||||
|
"SOC_TOUCH_SENSOR_VERSION": 2,
|
||||||
|
"SOC_TOUCH_SUPPORT_PROX_SENSING": true,
|
||||||
|
"SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true,
|
||||||
|
"SOC_TOUCH_SUPPORT_WATERPROOF": true,
|
||||||
|
"SOC_TWAI_BRP_MAX": 16384,
|
||||||
|
"SOC_TWAI_BRP_MIN": 2,
|
||||||
|
"SOC_TWAI_CLK_SUPPORT_APB": true,
|
||||||
|
"SOC_TWAI_CONTROLLER_NUM": 1,
|
||||||
|
"SOC_TWAI_SUPPORTED": true,
|
||||||
|
"SOC_TWAI_SUPPORTS_RX_STATUS": true,
|
||||||
|
"SOC_UART_BITRATE_MAX": 5000000,
|
||||||
|
"SOC_UART_FIFO_LEN": 128,
|
||||||
|
"SOC_UART_HP_NUM": 3,
|
||||||
|
"SOC_UART_NUM": 3,
|
||||||
|
"SOC_UART_SUPPORTED": true,
|
||||||
|
"SOC_UART_SUPPORT_APB_CLK": true,
|
||||||
|
"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true,
|
||||||
|
"SOC_UART_SUPPORT_RTC_CLK": true,
|
||||||
|
"SOC_UART_SUPPORT_WAKEUP_INT": true,
|
||||||
|
"SOC_UART_SUPPORT_XTAL_CLK": true,
|
||||||
|
"SOC_ULP_FSM_SUPPORTED": true,
|
||||||
|
"SOC_ULP_HAS_ADC": true,
|
||||||
|
"SOC_ULP_SUPPORTED": true,
|
||||||
|
"SOC_USB_OTG_PERIPH_NUM": 1,
|
||||||
|
"SOC_USB_OTG_SUPPORTED": true,
|
||||||
|
"SOC_USB_SERIAL_JTAG_SUPPORTED": true,
|
||||||
|
"SOC_WDT_SUPPORTED": true,
|
||||||
|
"SOC_WIFI_CSI_SUPPORT": true,
|
||||||
|
"SOC_WIFI_FTM_SUPPORT": true,
|
||||||
|
"SOC_WIFI_GCMP_SUPPORT": true,
|
||||||
|
"SOC_WIFI_HW_TSF": true,
|
||||||
|
"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12,
|
||||||
|
"SOC_WIFI_MESH_SUPPORT": true,
|
||||||
|
"SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true,
|
||||||
|
"SOC_WIFI_SUPPORTED": true,
|
||||||
|
"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true,
|
||||||
|
"SOC_WIFI_WAPI_SUPPORT": true,
|
||||||
|
"SOC_XTAL_SUPPORT_40M": true,
|
||||||
|
"SOC_XT_WDT_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_AUTO_SUSPEND": false,
|
||||||
|
"SPI_FLASH_BROWNOUT_RESET": true,
|
||||||
|
"SPI_FLASH_BROWNOUT_RESET_XMC": true,
|
||||||
|
"SPI_FLASH_BYPASS_BLOCK_ERASE": false,
|
||||||
|
"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_ABORTS": true,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_FAILS": false,
|
||||||
|
"SPI_FLASH_ENABLE_COUNTERS": false,
|
||||||
|
"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true,
|
||||||
|
"SPI_FLASH_ERASE_YIELD_DURATION_MS": 20,
|
||||||
|
"SPI_FLASH_ERASE_YIELD_TICKS": 1,
|
||||||
|
"SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false,
|
||||||
|
"SPI_FLASH_HPM_AUTO": true,
|
||||||
|
"SPI_FLASH_HPM_DC_AUTO": true,
|
||||||
|
"SPI_FLASH_HPM_DC_DISABLE": false,
|
||||||
|
"SPI_FLASH_HPM_DIS": false,
|
||||||
|
"SPI_FLASH_HPM_ENA": false,
|
||||||
|
"SPI_FLASH_HPM_ON": true,
|
||||||
|
"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false,
|
||||||
|
"SPI_FLASH_ROM_DRIVER_PATCH": true,
|
||||||
|
"SPI_FLASH_ROM_IMPL": false,
|
||||||
|
"SPI_FLASH_SIZE_OVERRIDE": false,
|
||||||
|
"SPI_FLASH_SUPPORT_BOYA_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_GD_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_ISSI_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_MXIC_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_TH_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_WINBOND_CHIP": true,
|
||||||
|
"SPI_FLASH_SUSPEND_TSUS_VAL_US": 50,
|
||||||
|
"SPI_FLASH_VENDOR_BOYA_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_GD_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_ISSI_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_MXIC_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_TH_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VENDOR_XMC_SUPPORTED": true,
|
||||||
|
"SPI_FLASH_VERIFY_WRITE": false,
|
||||||
|
"SPI_FLASH_WRITE_CHUNK_SIZE": 8192,
|
||||||
|
"SPI_FLASH_YIELD_DURING_ERASE": true,
|
||||||
|
"XTAL_FREQ": 40,
|
||||||
|
"XTAL_FREQ_40": true
|
||||||
|
}
|
||||||
39
build/bootloader/esp-idf/bootloader/cmake_install.cmake
Normal file
39
build/bootloader/esp-idf/bootloader/cmake_install.cmake
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# Install script for directory: C:/Espressif/frameworks/v5.4.1/esp-idf/components/bootloader
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set path to fallback-tool for dependency-resolution.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "C:/Espressif/tools/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
|
||||||
|
endif()
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user