First commit

初始化屏幕显示与触屏控制
This commit is contained in:
Shocky 2025-10-15 13:47:18 +08:00
parent a767034356
commit f9719fa962
805 changed files with 82609 additions and 1 deletions

2
.clangd Normal file
View File

@ -0,0 +1,2 @@
CompileFlags:
Remove: [-f*, -m*]

13
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
ARG DOCKER_TAG=latest
FROM espressif/idf:${DOCKER_TAG}
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
RUN apt-get update -y && apt-get install udev -y
RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc
ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]
CMD ["/bin/bash", "-c"]

View File

@ -0,0 +1,21 @@
{
"name": "ESP-IDF QEMU",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"idf.espIdfPath": "/opt/esp/idf",
"idf.toolsPath": "/opt/esp",
"idf.gitPath": "/usr/bin/git"
},
"extensions": [
"espressif.esp-idf-extension",
"espressif.esp-idf-web"
]
}
},
"runArgs": ["--privileged"]
}

23
.vscode/c_cpp_properties.json vendored Normal file
View 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
View File

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

20
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPathWin": "d:\\ESP_IDF\\v5.5.1\\esp-idf",
"idf.toolsPathWin": "e:\\QX_Tech\\ESP32_Test",
"idf.pythonInstallPath": "e:\\QX_Tech\\ESP32_Test\\tools\\idf-python\\3.11.2\\python.exe",
"idf.flashType": "UART",
"idf.openOcdConfigs": [
"board/esp32s3-builtin.cfg"
],
"idf.portWin": "COM11",
"idf.customExtraVars": {
"IDF_TARGET": "esp32s3"
},
"clangd.path": "e:\\QX_Tech\\ESP32_Test\\tools\\esp-clang\\esp-19.1.2_20250312\\esp-clang\\bin\\clangd.exe",
"clangd.arguments": [
"--background-index",
"--query-driver=e:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe",
"--compile-commands-dir=e:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build"
]
}

8
CMakeLists.txt Normal file
View File

@ -0,0 +1,8 @@
# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
idf_build_set_property(MINIMAL_BUILD ON)
project(signal_generator)

156
README.md
View File

@ -1 +1,155 @@
# Simlator_test
| Supported Targets | ESP32 | ESP32-S2 |
| ----------------- | ----- | -------- |
# DAC Constant Example
(See the README.md file in the upper level 'examples' directory for more information about examples.)
## Overview
This example shows the basic usage of outputting continuous voltage by the DAC driver. There are two ways to realize continuous output, one is outputting by DMA transmission and another is by timer interrupt.
### Timer Interrupt
While using timer interrupt to output the waves, it actually sets the voltage by `oneshot` API in every timer interrupt callback. Which means the conversion frequency is equal to the timer interrupt frequency. Obviously, the conversion frequency is limited by the interrupt, which relies on the CPU scheduling, thus it can't reach a high frequency in this mode. But it can be used as a supplementary way while the conversion frequency is too low to use DMA mode.
### DMA transmission
While using DMA to transmit the wave buffers, the digital values are put into a DMA buffer waiting for transmission and conversion, that means the conversion frequency is equal to the frequency that DMA transmitting the data. We can set the DMA frequency directly, and the digital data in the buffer will be sent automatically when the buffer has been loaded into the DMA. So the conversion frequency can reach even several MHz while using DMA mode. But the wave can be distorted if the frequency is too high.
## How to use the Example
### Hardware Required
* A development board with ESP32 or ESP32-S2 SoC
- Note that some ESP32-S2 DevKits have LED on it which is connected to GPIO18 (same pin as DAC channel1), so the output voltage of DAC channel 1 can't go down due the this LED.
* (Optional) An oscilloscope to monitor the output wave
### Configure the Project
You can switch the output method by setting the macro `EXAMPLE_DAC_CONTINUOUS_MODE` to `EXAMPLE_DAC_CONTINUOUS_BY_TIMER` or `EXAMPLE_DAC_CONTINUOUS_BY_DMA`.
There are four waves: sine, triangle, saw tooth and square. These waves are stored in corresponding buffers, and each wave has 400 points as default, which can be modified by `EXAMPLE_ARRAY_LEN`, reduce the point number can increase the wave frequency.
### Build and Flash
Note that as we use the ADC to monitor the output data, we need to set false to `CONFIG_ADC_DISABLE_DAC_OUTPUT` in the menuconfig, otherwise the ADC will shutdown the DAC power to guarantee it won't be affect by DAC.
Build the project and flash it to the board, then run monitor tool to view serial output:
```
idf.py -p PORT flash monitor
```
(Replace PORT with the name of the serial port to use.)
(To exit the serial monitor, type ``Ctrl-]``.)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
## Example Output
This example can output sine wave, triangle wave, saw tooth wave and square wave periodically, each wave will last for 3 seconds.
The DAC channels can be read by ADC channels internally. The ADC read period is 500 ms, the following log is the raw ADC value read from the DAC channels. But since the ADC sample-rate is lower than the DAC output-rate, the sampling value can only indicate that the voltage is changing.
### Timer Triggered Output
You can see sine wave, triangle wave, saw tooth wave and square wave at 50 Hz on the oscilloscope.
```
I (333) dac continuous: --------------------------------------------------
I (343) dac continuous: DAC continuous output by Timer
I (343) dac continuous: DAC channel 0 io: GPIO_NUM_25
I (353) dac continuous: DAC channel 1 io: GPIO_NUM_26
I (353) dac continuous: Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE
I (363) dac continuous: DAC conversion frequency (Hz): 20000
I (373) dac continuous: DAC wave frequency (Hz): 50
I (373) dac continuous: --------------------------------------------------
DAC channel 0 value: 2291 DAC channel 1 value: 2331
DAC channel 0 value: 43 DAC channel 1 value: 3
DAC channel 0 value: 55 DAC channel 1 value: 32
DAC channel 0 value: 57 DAC channel 1 value: 33
DAC channel 0 value: 56 DAC channel 1 value: 34
DAC channel 0 value: 59 DAC channel 1 value: 34
DAC channel 0 value: 56 DAC channel 1 value: 33
I (3393) dac continuous(timer): triangle wave start
DAC channel 0 value: 2258 DAC channel 1 value: 2243
DAC channel 0 value: 2257 DAC channel 1 value: 2242
DAC channel 0 value: 2259 DAC channel 1 value: 2242
DAC channel 0 value: 2257 DAC channel 1 value: 2245
DAC channel 0 value: 2257 DAC channel 1 value: 2243
DAC channel 0 value: 2258 DAC channel 1 value: 2240
I (6393) dac continuous(timer): sawtooth wave start
DAC channel 0 value: 2704 DAC channel 1 value: 2735
DAC channel 0 value: 2704 DAC channel 1 value: 2735
DAC channel 0 value: 2704 DAC channel 1 value: 2736
DAC channel 0 value: 2704 DAC channel 1 value: 2717
DAC channel 0 value: 2704 DAC channel 1 value: 2734
DAC channel 0 value: 2704 DAC channel 1 value: 2736
I (9393) dac continuous(timer): square wave start
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
I (12393) dac continuous(timer): sine wave start
DAC channel 0 value: 82 DAC channel 1 value: 62
DAC channel 0 value: 83 DAC channel 1 value: 62
DAC channel 0 value: 82 DAC channel 1 value: 62
DAC channel 0 value: 87 DAC channel 1 value: 62
DAC channel 0 value: 84 DAC channel 1 value: 63
DAC channel 0 value: 83 DAC channel 1 value: 64
...
```
### DMA Output
You can see sine wave, triangle wave, saw tooth wave and square wave at 2 KHz on the oscilloscope.
```
I (335) dac continuous: --------------------------------------------------
I (345) dac continuous: DAC continuous output by DMA
I (345) dac continuous: DAC channel 0 io: GPIO_NUM_25
I (355) dac continuous: DAC channel 1 io: GPIO_NUM_26
I (355) dac continuous: Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE
I (365) dac continuous: DAC conversion frequency (Hz): 800000
I (375) dac continuous: DAC wave frequency (Hz): 2000
I (375) dac continuous: --------------------------------------------------
DAC channel 0 value: 3131 DAC channel 1 value: 1634
DAC channel 0 value: 1712 DAC channel 1 value: 2531
DAC channel 0 value: 1716 DAC channel 1 value: 2535
DAC channel 0 value: 1715 DAC channel 1 value: 2544
DAC channel 0 value: 1715 DAC channel 1 value: 2533
DAC channel 0 value: 1712 DAC channel 1 value: 2539
I (3395) dac continuous(DMA): triangle wave start
DAC channel 0 value: 592 DAC channel 1 value: 1190
DAC channel 0 value: 4095 DAC channel 1 value: 3518
DAC channel 0 value: 4095 DAC channel 1 value: 3515
DAC channel 0 value: 4095 DAC channel 1 value: 3516
DAC channel 0 value: 4095 DAC channel 1 value: 3514
DAC channel 0 value: 4095 DAC channel 1 value: 3515
I (6395) dac continuous(DMA): sawtooth wave start
DAC channel 0 value: 294 DAC channel 1 value: 560
DAC channel 0 value: 2861 DAC channel 1 value: 3227
DAC channel 0 value: 2860 DAC channel 1 value: 3216
DAC channel 0 value: 2861 DAC channel 1 value: 3227
DAC channel 0 value: 2861 DAC channel 1 value: 3216
DAC channel 0 value: 2859 DAC channel 1 value: 3183
I (9395) dac continuous(DMA): square wave start
DAC channel 0 value: 4095 DAC channel 1 value: 4095
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
DAC channel 0 value: 0 DAC channel 1 value: 0
I (12395) dac continuous(DMA): sine wave start
DAC channel 0 value: 2864 DAC channel 1 value: 3691
DAC channel 0 value: 0 DAC channel 1 value: 204
DAC channel 0 value: 0 DAC channel 1 value: 202
DAC channel 0 value: 0 DAC channel 1 value: 193
DAC channel 0 value: 0 DAC channel 1 value: 181
DAC channel 0 value: 0 DAC channel 1 value: 194
...
```

BIN
build/.ninja_deps Normal file

Binary file not shown.

605
build/.ninja_log Normal file
View File

@ -0,0 +1,605 @@
# ninja log v6
38 91 7816152833767231 project_elf_src_esp32s3.c 227f928f9ea8a5f3
38 91 7816152833767231 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/project_elf_src_esp32s3.c 227f928f9ea8a5f3
23 138 7816152834237475 esp-idf/esp_system/ld/memory.ld 172780f1eb757468
23 138 7816152834237475 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/memory.ld 172780f1eb757468
28 138 7816152834243187 esp-idf/esp_system/ld/sections.ld.in 4cb28cd9d93c8c59
28 138 7816152834243187 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld.in 4cb28cd9d93c8c59
138 362 7816152834287541 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b3adf48c2ba3ab04
149 374 7816152834396801 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj 67571aa8e9131607
187 383 7816152834802111 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj 72c4ff10e748271d
197 394 7816152834872249 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj 5ee3f2fe7ed7ba70
204 404 7816152834944095 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj 7a00ba41ddfe8218
210 414 7816152835034012 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj 657e4203334bd659
225 424 7816152835165132 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj 3df1056931486ec
261 434 7816152835529428 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj 37d43ab18d41a5f
165 444 7816152834584768 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj d432d74777fe8b3
160 462 7816152834503224 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 11958d46fc59401e
181 475 7816152834713126 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 26b0acfeff6d2357
175 486 7816152834647797 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj a0c50fcb41880855
251 494 7816152835445654 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj 17e81bee60f23473
219 502 7816152835091262 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj e33c06aad9a0d125
241 512 7816152835340280 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj 4698dd1ddfebbf23
155 525 7816152834449470 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 7b264691335e2fb2
32 535 7816152833796523 partition_table/partition-table.bin a2417c4b117baceb
32 535 7816152833796523 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin a2417c4b117baceb
234 546 7816152835243304 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj 485dea7a585cfc54
284 557 7816152835776723 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj 41dd471ae52390a7
295 568 7816152835850882 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj 3e540bc2146f28e1
311 578 7816152836014302 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj 8ff6aea0e18cdeb4
304 588 7816152835948326 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj fe8cd3b0319de5a3
334 597 7816152836239378 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj 4930389db669e176
342 607 7816152836327798 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj c48cbc5a7cd1bb65
276 618 7816152835663646 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj 5b9c2ebb4de3998b
269 626 7816152835596676 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj 1cda8254f1e5adda
327 635 7816152836171272 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj 9d132273ef6e78c5
319 647 7816152836092023 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj c3a93d16d252432c
352 657 7816152836423598 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj 6729509e6d340693
144 664 7816152834342170 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b4ea182aa165dfe
383 678 7816152836736924 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 38f304c8e7838692
364 695 7816152836541258 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b03369e209f9677b
375 706 7816152836648715 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 2d3bc91944aa8385
404 720 7816152836950053 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 411cdeedd263be5b
486 734 7816152837759627 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 75f14a3347d9e675
494 750 7816152837844188 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 4b2ce8ca22ce32dc
395 762 7816152836850736 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 88f77d9f7ede3b0e
504 772 7816152837944189 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj 6b091fcf1a9cddfd
454 781 7816152837440363 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 6e60e0efef0331f
434 791 7816152837246670 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 11446820d0fb3153
515 801 7816152838049230 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj af6d72acf92aaed3
475 814 7816152837651988 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 7bc1849381290b1a
415 824 7816152837046687 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 65b0620db3e4e811
568 834 7816152838582551 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 6c9de3b89cdd4b38
525 848 7816152838159285 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj 2527c0249814c22b
557 860 7816152838475387 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 3d27bac79ad19960
546 873 7816152838360790 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 47827dd698cb25cc
578 885 7816152838682822 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj 2986a30ce50be54c
464 895 7816152837543769 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 89c52edc7ea31846
535 919 7816152838256542 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj ae892176310bf0b9
647 928 7816152839370870 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj bb632b4ae137a92e
607 937 7816152838980207 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj f26e2e83fb001028
589 952 7816152838787126 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj f45ea379d9c1850
597 965 7816152838879316 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj f68280bb3d00e081
627 976 7816152839169384 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 329e472b21227a2f
695 986 7816152839857484 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 8ffa72b61a43daf4
665 994 7816152839553114 esp-idf/cxx/libcxx.a 4f0e157df1c3689c
657 1001 7816152839473093 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 5d94483eea72f174
635 1016 7816152839260941 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj e6744fd6df055c4e
684 1025 7816152839739617 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 14f63b49e6247006
424 1035 7816152837151516 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 9354598a2c7b4499
740 1045 7816152840303709 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj 549687dbc275478d
618 1061 7816152839088698 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj d7d2a221bc8596
725 1072 7816152840150455 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj fc4f26da502305a9
710 1082 7816152840001421 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 7bf978511941ad26
792 1095 7816152840821893 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 60f841102a2624bb
782 1107 7816152840719785 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj ac597b3ab87a322f
864 1121 7816152841543377 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj 984b31e36c391b40
762 1137 7816152840522912 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj e4e17bd627db0f2e
750 1153 7816152840407253 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 20037d01f7b7e317
825 1173 7816152841150804 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 794f1ab3061d6918
848 1189 7816152841385917 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 444a9b8eb07b812e
772 1203 7816152840629729 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 6bbc01f8223c2bb9
801 1216 7816152840948883 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 93d3f86f74bad9ca
885 1228 7816152841752413 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj bd8172d5f4e769a8
955 1242 7816152842453979 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj b578860464960cb
928 1251 7816152842180438 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 595a4833337909a0
814 1261 7816152841043482 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 30239ab86f409d28
919 1272 7816152842091291 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj 80713705d1715cc3
876 1283 7816152841662686 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj ff60eee5c24bf916
994 1298 7816152842841788 esp-idf/pthread/libpthread.a 2aa153cff6bfb7db
965 1314 7816152842554977 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj c8829425da91d3f7
976 1333 7816152842667189 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj c980c851834668cf
942 1343 7816152842330780 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 40311656ff35c916
986 1357 7816152842768283 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 9d373ed8b81be18e
1025 1368 7816152843154716 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj 3fae9ef78a31d6a8
1073 1382 7816152843630540 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj 6c489e07d9c18499
1111 1391 7816152844010435 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj bfcaef175a44d0f8
1001 1402 7816152842961846 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj 7d065a73bb57bcd2
1050 1416 7816152843405341 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 2b1d1b046d4ed7a2
1035 1425 7816152843259773 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 3da892e5d0220940
1061 1446 7816152843519372 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj e312d98e838a2a23
1016 1461 7816152843063249 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 968d11b411bc1bba
1216 1476 7816152845071562 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 4d54727b315b9a62
909 1486 7816152841994791 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 3b85b65a73256099
1127 1494 7816152844176654 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj 4df2bd43a0dffa5a
1085 1503 7816152843752026 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj 7bba42e95d508ef1
1252 1519 7816152845417293 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 7655ec6f1f576476
1243 1530 7816152845332859 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 66c275486d6752f2
835 1543 7816152841247630 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 42325fe8f623942f
1261 1555 7816152845516128 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj 61184727ae44e714
1173 1562 7816152844636238 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 52278758e79c23bd
1137 1570 7816152844274921 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj 4e89f0e3c9b72a83
1272 1580 7816152845626871 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj 501dffa6e5f4a62b
1289 1588 7816152845796386 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj 66182c6ee1a052f9
1193 1597 7816152844826989 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj ef0eb5303c06eae2
1229 1605 7816152845193692 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj c8f405b9ba97ebaf
1163 1613 7816152844538697 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj d4f3d8226abad619
1323 1623 7816152846136721 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 7a361f13fca00bfc
1345 1632 7816152846358886 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj aa5c51093b6ca0a
1334 1642 7816152846243330 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj f2a0f761d62c65a9
1203 1650 7816152844934874 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj 36e1fa4dae0dd943
1369 1658 7816152846589239 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj c974fb08842da8ca
1357 1667 7816152846475009 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj c99d9a1be17c65ce
1392 1677 7816152846825123 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 93e2db8462bfb6e
1403 1685 7816152846929426 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj c424ea7d7f2f8066
1382 1693 7816152846718373 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj 28b051945147f73c
1306 1703 7816152845962091 esp-idf/newlib/libnewlib.a 57af9fb67637edc3
1426 1711 7816152847162139 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 80095ac53b7699b1
1417 1719 7816152847069289 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj d7cbb3c0045f3f2b
1454 1729 7816152847441020 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj bfd41e4e98633ff9
1476 1737 7816152847666036 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj f2f8965b2baa6f11
1465 1745 7816152847561055 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj 4f2ebc17740f1cca
1522 1753 7816152848121164 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj efc5f43c1422e6f
1495 1761 7816152847849353 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj 538de7b28c6451fc
1486 1773 7816152847767967 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 485fa4a6a385c516
1510 1788 7816152848005473 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj 3eba3b38ac857078
1095 1798 7816152843849848 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj cbf1cf79ef860764
1533 1809 7816152848235327 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj 616242df4489dc0f
1547 1820 7816152848377953 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj bedb167d7857846b
1555 1829 7816152848445311 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj bc733a1081031265
1580 1845 7816152848702327 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj 86d8ead808c6f63c
1570 1861 7816152848609924 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj a1375606aa4eb7a9
1562 1871 7816152848524527 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj ff550ed3705dd1a3
1643 1881 7816152849332124 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj 729a557711a0b111
1633 1893 7816152849232003 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj c0824563c9dc2af9
1589 1904 7816152848794617 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj bef1de6ce5efe89a
1696 1921 7816152849865516 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 3ea0421c77f4477
1605 1929 7816152848959069 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj c6a311e7f32bb208
1711 1938 7816152850011384 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj e212323478993c0a
1614 1946 7816152849041650 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 87d2c72a0057f92d
1685 1965 7816152849754520 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj 1d725e3733265fbc
1650 1977 7816152849401658 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj 187b3395c6457d7a
1719 1989 7816152850093282 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj a16a939a495b50d2
1677 2003 7816152849672579 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 92557e67e7931cf0
1670 2016 7816152849598049 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 4b7dbaba964f8482
1659 2027 7816152849484307 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj dbc4483cd2e78425
1597 2037 7816152848877197 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 6ecb8d9e8cbb96f2
1737 2046 7816152850279275 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj d993e6307c168b51
1745 2060 7816152850355603 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 23364325c2df27b0
1753 2070 7816152850435066 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj 2146d68668e1dcf7
1729 2083 7816152850196192 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b88344aee27a327
1762 2096 7816152850528126 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj ebe171a974afc57f
1799 2110 7816152850893326 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 1319c919b5af13bc
1778 2129 7816152850690006 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj 51017e833a5ecb85
1789 2140 7816152850795547 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj be4fe8ddfef5938
1703 2150 7816152849928681 esp-idf/freertos/libfreertos.a 7b98bb2ca6490e25
1809 2173 7816152850992660 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj a4e789136f71cc6d
1820 2183 7816152851106010 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj 69e5ffb88241a0f0
1862 2194 7816152851521996 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj 1de6c0557dfd7188
1895 2205 7816152851851355 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj aa2eed41d137ba46
1837 2214 7816152851271713 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 707b43a91d921b4c
1624 2226 7816152849135411 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 548121cf1c5506b6
1851 2236 7816152851413531 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b24a9e9eeccb164e
1921 2246 7816152852111029 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj f19dbf3c0335cfce
1938 2259 7816152852286005 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 7db356045e875ae3
1955 2273 7816152852455112 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b1dd6f3894977dc1
1871 2286 7816152851617569 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b5a9e5969e489da9
1904 2304 7816152852004303 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj e1d277af1e4ad09b
1980 2312 7816152852703235 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 63fd48a335661efd
1994 2323 7816152852847590 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 343a076b2ffec757
1967 2337 7816152852578325 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj 8000d168d7511c14
1882 2347 7816152851719923 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 878204fb0542d5d4
1929 2363 7816152852195539 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 41f95ed45dda5e70
2006 2372 7816152852968838 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 8793f1a5b4ab2054
2049 2388 7816152853392955 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj ea5399abfaeb1ec1
2027 2405 7816152853181411 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 433f0c83f772b149
2038 2418 7816152853283485 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 2bcd935ff55e6369
2018 2430 7816152853084529 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 9fb7b84ec8da3f6b
2071 2440 7816152853605430 esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj b1ce37ef9d6ec9a2
2061 2453 7816152853511560 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b53ca33385585355
2096 2465 7816152853866564 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj c3c34bbcc14debd5
2140 2478 7816152854309988 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 92b5cb2e35cadcee
2173 2495 7816152854640679 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj a97aa639d50affdb
2113 2507 7816152854029908 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj f77db365e63478bd
2083 2527 7816152853739103 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj d60853a9d482085c
2214 2541 7816152855045869 esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj 79b34f7336d69cc2
2194 2556 7816152854850574 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 3fff7ff00ca3beb8
2131 2571 7816152854203738 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 46e0ecd2d15d9f5e
2227 2582 7816152855176516 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj eeb55e6b15df9125
2246 2598 7816152855365133 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj e9b75fd4345fca73
2236 2606 7816152855261543 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj af9c48528187eba9
2183 2618 7816152854733719 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 1dc98e7f4fc0f8c
2259 2627 7816152855522514 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj ff97204c03420039
2205 2638 7816152854950043 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj e8d23683f2d46cd3
2304 2646 7816152855947220 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 7c50f2bc624275c
2273 2658 7816152855635977 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 294fe2f888bd7f02
2364 2673 7816152856536863 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 448c1ba7dc704b8d
2351 2689 7816152856413445 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 651d3192356cbf9c
2312 2700 7816152856031832 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj c76f71f54d20582
2372 2714 7816152856669765 esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj 3471ef585203e38b
2391 2724 7816152856811608 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 481e9f8ea29cb26d
2337 2749 7816152856274720 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj eb9398dc3ab31ab0
2328 2760 7816152856177747 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj 6c96db5d85a863c0
2158 2773 7816152854487546 esp-idf/esp_hw_support/libesp_hw_support.a aa7e70af4f5a2bb8
2418 2783 7816152857088506 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj 9b543af5b86f759f
2286 2792 7816152855760156 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 9464435ad5773692
2441 2807 7816152857316847 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 2b1d148749f54ed2
2456 2816 7816152857463224 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj 8ab3eeea5ebc28a6
2466 2826 7816152857558415 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj 33658415aafe606
2430 2836 7816152857205179 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj ebc788d00f674117
2531 2844 7816152858217696 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 3382c0a1a10ae0ed
2406 2853 7816152856967292 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj 3643aa06fd7c0332
2496 2862 7816152857860879 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj ea8e87d13a4c472b
2479 2872 7816152857758611 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj 98e0b757fc76f1e2
2511 2882 7816152858009876 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj de99b5ed52f738e
2571 2894 7816152858614356 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 8a05986710b029b9
2545 2903 7816152858350466 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj fc26c7b56e79eb04
2598 2914 7816152858884539 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 134e9e302d8e39c0
2586 2925 7816152858765342 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj ad4182f98279499a
2560 2934 7816152858508725 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 4df9c06e431302b
2606 2945 7816152858964430 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj a8fc9a65686f3a4c
2638 2961 7816152859279833 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj a4e23d956377dd3f
2627 2972 7816152859175436 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 5f30650eb6b61156
2619 2983 7816152859093704 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 8dc1de4c6cc32b13
2647 2997 7816152859370862 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 1d1666bfe72c458d
2659 3008 7816152859491140 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 104036bea03eacea
2702 3018 7816152859931205 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj cb0f71a90283dc6
2674 3033 7816152859682858 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 8dfb0766d2bf4b0e
2690 3049 7816152859802061 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 3557a185d2df7263
2714 3059 7816152860049266 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 6af95858d0a1c161
2760 3068 7816152860508765 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj a2f02db0c858042d
2773 3082 7816152860638436 esp-idf/esp_security/libesp_security.a f89e6cf478502087
2816 3092 7816152861059193 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj dbeda5c2c7a85f87
2807 3102 7816152860972323 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 101cd938fb4f0176
2783 3113 7816152860738079 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 57e94d2489b7226a
2739 3124 7816152860299856 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj a3286ec63be746d3
2826 3133 7816152861163504 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 930b167ae073b855
2750 3143 7816152860404167 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 6391b770a6da8707
2934 3152 7816152862246038 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b35fb08da1de986b
2836 3160 7816152861268800 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj e75fffea51c185a6
2925 3171 7816152862151880 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj cc3f9d50fea509c4
2961 3179 7816152862516348 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj fca8be7dcd532cb5
2914 3189 7816152862038628 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj d3f2e771271e8971
2894 3198 7816152861849179 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 1adba63b6fb5330b
2793 3209 7816152860829243 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj f88da1de3b1ac7b3
2872 3220 7816152861625410 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 31605c11f4d071a
2986 3228 7816152862771814 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj f945a7a8220f4c5e
2903 3242 7816152861938967 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj 658c72ac80e0c025
3009 3255 7816152862988660 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj fe91f2ad61bfb320
2883 3263 7816152861733604 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj e5b291633262f35a
2853 3287 7816152861438827 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 2d4509587aa35339
2844 3296 7816152861342361 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 17b34be331e735b7
2951 3309 7816152862412834 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj f93d729ba7df27d4
2972 3318 7816152862625283 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj 1881b898580fc27a
3023 3329 7816152863132680 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj ddda24d25be023ef
3049 3338 7816152863392446 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj 76a9b25973bcb2ab
2862 3347 7816152861523481 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 320136c6c6845260
3038 3360 7816152863284275 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj ac1b2a3ad09465b2
3000 3368 7816152862900083 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 757ed2f18e64f118
3073 3376 7816152863631637 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj c3966057a9f8421b
3124 3383 7816152864149881 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 12d30c6d71dde330
3152 3392 7816152864423458 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 689e4fac39237b4
3113 3401 7816152864036025 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj 2b388e7a5a84a516
3059 3411 7816152863494002 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj 76f464381eb422a1
3143 3430 7816152864334033 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj 3bb22ff167d780b2
3103 3438 7816152863928033 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj 175d8b955eb0caef
3133 3448 7816152864235336 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj be33fa086681dbb
3082 3455 7816152863722094 esp-idf/soc/libsoc.a 2f53bd59c6cd686c
3094 3464 7816152863842564 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj 97a1e60d86b84233
3171 3473 7816152864612563 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 724bd873681b43cd
3213 3484 7816152865030269 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj be080ce282be9081
3190 3495 7816152864799677 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 4ce64541b989e972
3179 3503 7816152864698106 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj ee16fba2be39703c
3232 3512 7816152865223418 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 419f27e3817060e3
3199 3525 7816152864898423 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 6852e84d99f6b8e2
3160 3535 7816152864507886 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 2ad8d60c8dfeb34a
3246 3545 7816152865363072 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj dff7c0f12ccbb9bf
3220 3557 7816152865103993 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj f7aeaad1c4effdb0
3360 3565 7816152866509276 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj 3d4c438f059d64ac
3298 3575 7816152865887775 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 81c67fe2202d992a
3275 3583 7816152865662327 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 779425b150b23747
3339 3594 7816152866293648 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 8e88dad73648aff6
3255 3609 7816152865456349 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 9f2c8c436e758136
3383 3621 7816152866737436 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b9e3b5e1abe174de
3287 3631 7816152865770219 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 42c8e00d2c717f5
3329 3645 7816152866192560 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 22266a6f458fe116
3376 3666 7816152866667198 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj d036dac34ce325ff
3318 3677 7816152866084600 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 718905949a8000ea
3430 3685 7816152867198894 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj d22c566dea28b3ec
3439 3696 7816152867290796 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj f6913fd826955c1b
3448 3706 7816152867377762 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj d985911e1d6f70a6
3368 3715 7816152866582313 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 783c9d1a5c6a1a2c
3455 3730 7816152867455353 esp-idf/heap/libheap.a f3fd23dfbfb8611d
3347 3738 7816152866396943 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj e6d341745028c76a
3422 3748 7816152867117170 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj f96ef32b38f17ff5
3393 3759 7816152866831804 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj be5c0d251d6c7654
3402 3768 7816152866919792 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b940d1710cad243c
3484 3778 7816152867746954 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj c178a5c8ca15e9e4
3464 3789 7816152867540037 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj c3325fcae25634ea
3309 3804 7816152865994967 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 72db8cc6910ff8c8
3474 3814 7816152867642074 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 204806d4a6cdcd79
3504 3824 7816152867941987 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b1858fe678b25586
3535 3835 7816152868255543 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 57735c4608231829
3495 3846 7816152867853084 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj d37eb19c75bc1958
3512 3860 7816152868069383 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj a6ecf1acb931a531
3576 3870 7816152868660301 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj bbed0234a7a3d4b3
3566 3881 7816152868560723 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj b638d56240f035b4
3583 3891 7816152868738874 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 5448dc4d03e4b115
3599 3902 7816152868890760 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 57128a1dd305bb5d
3557 3910 7816152868481019 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 7ac442bb1b928c4f
3636 3921 7816152869255430 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj c15c39fba57ffec4
3611 3933 7816152869020425 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 2bce335d9b85a069
3721 3943 7816152870115782 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj e381530b9624be8
3739 3955 7816152870294702 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 57aeb23744708a3b
3659 3964 7816152869493381 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 7a992e4b8bdd6115
3677 3977 7816152869676138 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj a21f1c746134d9d
3621 3987 7816152869119988 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj cde9bf7ec8542339
3666 3997 7816152869560906 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj bba7c22de77b9e14
3546 4015 7816152868358830 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b7bbd80b60df0515
3525 4028 7816152868152394 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 23e20137700ac848
3696 4039 7816152869862323 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj 327a64793c2b0afb
3759 4050 7816152870495443 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 181d5cfb52b556ac
3780 4063 7816152870705916 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 68b9cca59abbfa43
3768 4079 7816152870588892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 215315e351c40663
3748 4093 7816152870384222 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 5618a0073879e698
3730 4102 7816152870205181 esp-idf/log/liblog.a 218edd2d6570b82d
3685 4113 7816152869752470 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 4dcbf1346b23bfcd
3804 4124 7816152870947684 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 357a0f9fa87504c4
3792 4138 7816152870831154 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b979a59fb8b800b
3835 4158 7816152871255173 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b7ea04cf3a2bf1f8
3825 4170 7816152871153695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 18deb50b05544821
3902 4187 7816152871922260 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 9e58422e92bc3a1c
3706 4200 7816152869971199 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj eb259ef50be7383b
3911 4224 7816152872015636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 98f8f3a1905c08ea
3921 4243 7816152872114981 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c0e8302cd7a4a528
3933 4253 7816152872240815 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b4033c69326b95d0
3814 4265 7816152871050582 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj ef2b10287f38669b
3955 4294 7816152872454255 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 33d2106bf6405422
3860 4308 7816152871501252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj d691e7b236036a0f
3945 4325 7816152872349024 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 1291a95ab233133d
4094 4349 7816152873841762 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 786301fd5a01583f
4113 4359 7816152874035466 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj a21def221d1f13d8
3965 4370 7816152872557665 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj ff30b5e8ddadd4a0
3988 4380 7816152872783250 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 9ba8ab8700ec7259
4039 4393 7816152873292487 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj c8585304e64b7aa1
3846 4402 7816152871363706 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj ce0a806c9daa3a91
4006 4416 7816152872968455 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj d4f1470c4ea33149
3881 4426 7816152871713059 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj f6aa102c2aa9201c
4079 4441 7816152873695985 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 41be560b0d0b425e
4028 4456 7816152873179548 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 2aaade27b46785b9
4064 4465 7816152873539129 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj e0a239b7abf2b781
4050 4481 7816152873405142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj a797330e490298e9
3891 4503 7816152871818449 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 577d448f430a97b5
4228 4523 7816152875189872 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 165f3adf85886c96
4125 4545 7816152874153418 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 6935091ca4f0709e
4147 4560 7816152874376456 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj aa2533c5cd43d8f4
3977 4575 7816152872675231 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e63dab10f1bf6cde
4243 4586 7816152875338985 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj a11fa7f964a07e8c
4253 4601 7816152875433816 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 8d26b8de1e23e1b0
4158 4611 7816152874486285 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 8c2445baee0102d9
4177 4622 7816152874676931 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj dd830b294786640b
4275 4633 7816152875652346 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj ae0d116baab2d34
4308 4643 7816152875981720 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 364cff72eb8eba8e
4327 4655 7816152876175536 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 8d28eb52349527e1
4018 4671 7816152873084116 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj f615bb7844b0949c
4206 4687 7816152874959794 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj db17303313d3fbf9
4297 4703 7816152875877423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj e176f718b76a250c
4403 4718 7816152876929088 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 528cef3a3f8a72a0
3871 4731 7816152871609426 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b5fc1c7f6aff3d05
4380 4745 7816152876705583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj d2cefe81b2c30fa8
4370 4765 7816152876606253 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 2d99f124a53231fc
4416 4780 7816152877068264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 9012f2370b880d38
4457 4794 7816152877471558 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 20e3205f686ff3d3
4102 4813 7816152873926194 esp-idf/hal/libhal.a 8fc78c33ab85eede
4359 4826 7816152876493112 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 2ac36cb60c203713
4188 4844 7816152874789341 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 1571f95a3ed2ef8d
4431 4856 7816152877212340 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj a6cd3202a8d05267
4393 4868 7816152876829752 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 34776f4c9aa50678
4507 4882 7816152877973772 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj cd11377b32ad85a3
4442 4897 7816152877322557 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 69eadcf5ca94bb80
4349 4907 7816152876399147 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 952c8aa9c9e84801
4548 4920 7816152878382749 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 329f1893a61d6850
4586 4934 7816152878768924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 996e5bb7152d201a
4531 4944 7816152878215671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 72853cf8e239389c
4657 4957 7816152879472542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 61f5517679704274
4492 4982 7816152877822764 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj ed9fe0cb3bb61abe
4560 4997 7816152878497502 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b67c2c34d62c8a94
4643 5008 7816152879338583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj ddb7e1e6a6692cc2
4601 5022 7816152878914669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 4a866e0d2aa75a14
4703 5032 7816152879934151 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 1e5b95c1cc1267d5
4672 5044 7816152879620377 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 2cb3bb81e82b0be7
4575 5058 7816152878653681 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 30fc857d56fdb824
4611 5077 7816152879012490 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b527efda7aaf12f3
4622 5090 7816152879125682 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b24d95d785a0b617
4633 5105 7816152879236252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 3c66bc5185ebba7f
4746 5117 7816152880367676 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj d8980857c268e48
4718 5126 7816152880083656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj afae24148c6fef59
4466 5137 7816152877566600 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 453a1378a6c190e1
4781 5147 7816152880719196 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 2785e3505f8ecf75
4770 5159 7816152880604712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 1c7ffc4721a8e646
4688 5174 7816152879783073 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj bdb7ebfbebfad895
4731 5184 7816152880216765 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 78233f786bdbeee3
4884 5196 7816152881748767 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj d59c22516b6e960e
4858 5206 7816152881481431 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 4043d1a3d0429e37
4868 5216 7816152881583281 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj c7a29651e9634d51
4795 5225 7816152880852079 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 300399157f14101d
4816 5233 7816152881067309 esp-idf/esp_rom/libesp_rom.a 1d2d2e300f3117fd
4844 5241 7816152881342382 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj a7e73ce5b2a7f63
4935 5250 7816152882249235 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj eb0f5700e9551d69
4827 5259 7816152881211452 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 7e9fe59bb81b7a7a
4946 5269 7816152882365827 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 9759edd5bbc7606f
4908 5280 7816152881981427 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 239ba90d763997c8
4924 5288 7816152882149115 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 7b6c3c22eab70af0
5046 5295 7816152883369133 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 494fcd53d305c2d2
4984 5303 7816152882747887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 21e802a58dab4aaa
5078 5319 7816152883684636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj d0641904e1d7e1ad
4997 5329 7816152882877020 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 344fe6bf63d56b86
5012 5339 7816152883020134 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj e50aa4e4893258c8
5022 5349 7816152883125013 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj f8b3da8d610b9865
4970 5358 7816152882601229 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj d75d2fcb07caba26
5091 5370 7816152883850852 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 3fa88c9417156338
5117 5382 7816152884073246 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 2fedfb534ff0dbaf
5032 5393 7816152883226906 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 54159167535f44a5
5063 5400 7816152883575365 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 86c3e6c5c2fa9202
5105 5409 7816152883960703 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 35813e12a5f4898
5137 5424 7816152884271284 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj e1d21e3007b74ec5
5184 5433 7816152884749275 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 6fef19fe69afe827
5196 5443 7816152884863837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 77a74017e773bb1c
5150 5451 7816152884398760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj acd49e9daee86fa8
5206 5463 7816152884967142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 43612cc83023ca52
5226 5474 7816152885156715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 86ba2dacdec4076d
5159 5482 7816152884540369 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 3d28e596faa68df9
5216 5494 7816152885067037 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj dabca4087326e243
5174 5505 7816152884646318 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 9dac593a32fccc26
5241 5515 7816152885319010 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj 66e3fc51d8e0bf9c
5233 5523 7816152885235965 esp-idf/esp_common/libesp_common.a 1acf502684c045fc
5250 5532 7816152885404492 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj a9e88a79d74d53cb
5288 5534 7816152885782535 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj 80fcc5bde629131f
5280 5535 7816152885706867 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj 3cf26e5bfeb47b61
5295 5535 7816152885852075 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj 8acf9047b4a5ecd9
5310 5536 7816152885997864 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 1227bdb0358a3ac5
5319 5542 7816152886094844 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b4104fc7b82cf18a
5269 5551 7816152885591924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 6abff885eb91e097
5339 5560 7816152886290104 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 21c54f90162e733e
5259 5577 7816152885496688 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj 4778b204c346c5b9
5401 5594 7816152886910723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 3db3a3f404cddbea
5329 5595 7816152886195421 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj 23680750c20f76f8
5126 5596 7816152884166308 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj d26b10415197c41e
5371 5600 7816152886616068 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj 72718bf2b1ceb444
5358 5624 7816152886483009 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 4436b5e3b84207e
5416 5649 7816152887070439 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj 1cfc1222d56c4ece
5425 5650 7816152887151142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj f82b0a5ffafadbb5
5451 5651 7816152887419768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj 4cbf15e0bb2e2b4e
5494 5651 7816152887868883 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj be7da25e866ba9fd
5382 5652 7816152886724222 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj 59a85c64d5d877fe
5349 5652 7816152886391961 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj d80514bd5ca522c7
5505 5658 7816152887956943 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 6f22033ee57640af
5474 5661 7816152887643261 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 6bcbfe5492860686
5482 5661 7816152887725880 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj edd221808cef4a6
5515 5662 7816152889478229 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 4c0b75c67644bbef
5515 5662 7816152889478229 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 4c0b75c67644bbef
5435 5666 7816152887249793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj ed91a90752b4e3da
5463 5669 7816152887534685 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj acd942ebd0ac597
5393 5676 7816152886833525 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 331114bf0525aa4a
5444 5703 7816152887339287 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj c0d211cd2b070121
4897 5724 7816152881870858 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 8655756d216d446c
5523 5738 7816152888131994 esp-idf/esp_system/libesp_system.a 1dd6164a1f35127b
5662 5766 7816152890524609 bootloader-prefix/src/bootloader-stamp/bootloader-download 70563b534e1fa049
5662 5766 7816152890524609 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 70563b534e1fa049
5766 5868 7816152891540740 bootloader-prefix/src/bootloader-stamp/bootloader-update 666f36dce471e83c
5766 5868 7816152891540740 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 666f36dce471e83c
5738 5890 7816152890285010 esp-idf/spi_flash/libspi_flash.a f26642509e76831f
5868 5968 7816152892548227 bootloader-prefix/src/bootloader-stamp/bootloader-patch 932a5beeab5a4b13
5868 5968 7816152892548227 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 932a5beeab5a4b13
5891 6011 7816152891811166 esp-idf/esp_mm/libesp_mm.a e371029f8b06c011
6011 6148 7816152893007200 esp-idf/bootloader_support/libbootloader_support.a 7adca021c756fb20
6148 6279 7816152894383171 esp-idf/efuse/libefuse.a d8a923271eb831b
6279 6403 7816152895693362 esp-idf/esp_partition/libesp_partition.a f82620ebbadec84c
6403 6514 7816152896931165 esp-idf/app_update/libapp_update.a b7e6ae6ef5050b8b
6514 6621 7816152898037258 esp-idf/esp_bootloader_format/libesp_bootloader_format.a a4bcb45ec380c1ba
6622 6728 7816152899114640 esp-idf/esp_app_format/libesp_app_format.a 522222b32fd0c2eb
6728 6869 7816152900189783 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 774f6dbadda96f5d
6869 6993 7816152901591872 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 14a61eb1035255b0
6993 7266 7816152902839982 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 8130e9d95683e200
7266 7377 7816152905564464 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a d3dd4373e9818cb6
7377 7488 7816152906671362 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 48af05ae3bf7a142
7488 7603 7816152908828318 esp-idf/mbedtls/x509_crt_bundle 1af678b612885bca
7488 7603 7816152908828318 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/x509_crt_bundle 1af678b612885bca
7603 7737 7816152910239129 x509_crt_bundle.S c965008b61c9865b
7603 7737 7816152910239129 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/x509_crt_bundle.S c965008b61c9865b
7737 7984 7816152910280545 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 896136c90632d117
7744 7997 7816152910339606 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj aa14cf11d3b77b77
7750 8012 7816152910398544 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 169a9b74485bb0aa
7756 8026 7816152910490341 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 84041069ef54a67b
7771 8039 7816152910638654 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 49a3b839c408d8d9
7781 8050 7816152910742281 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj 998ad6c34a84db4b
7790 8058 7816152910824745 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 6271ab200f25d1eb
7799 8070 7816152910896832 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj e39153e31d771baf
7805 8079 7816152910955401 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 8a3a81318bde3549
7812 8087 7816152911021752 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj 76373500adb50707
7825 8098 7816152911150389 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj f002efdb71945b22
7860 8109 7816152911497296 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj d230f6a2201c401e
7866 8120 7816152911574216 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj a2804875d9cde1e1
7876 8133 7816152911699213 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj e9514dfff9bbc5db
7889 8143 7816152911793581 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj bfb7296f705c668f
7899 8151 7816152911898904 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj 42ca687f972493c7
7906 8166 7816152911971985 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj b1f81a658208d749
7765 8178 7816152910554217 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj edc0d6cc8b1828b3
7849 8189 7816152911392600 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 6631ea91add106aa
7841 8203 7816152911319455 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 63ded41ae54f025e
7833 8220 7816152911230392 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj fc217c9335d391f6
8004 8236 7816152912950028 esp-idf/mbedtls/libmbedtls.a de3a8216b41e234
8050 8249 7816152913403240 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj ba613d04dab76c9a
7986 8287 7816152912765839 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 337e863561fdfc72
7974 8319 7816152912665899 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj f58ffac16bdd34fc
7963 8365 7816152912534627 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj bc3d34199dd4b3f9
8029 8375 7816152913195029 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 75f27419a7ba0272
7916 8385 7816152912058809 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 1dd0e593573fa0eb
7944 8394 7816152912343671 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 56c78508177102a1
7818 8403 7816152911086729 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 954a939316286de4
8014 8411 7816152913046010 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 61bc153f6d7d9213
7952 8421 7816152912452124 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj fb364a3179118c2f
7925 8431 7816152912155643 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj a2aa471d6b47646
8070 8443 7816152913604961 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 110aa152e59b3512
8039 8457 7816152913293240 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e21d1c45c32d5d65
8109 8468 7816152914024280 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj 9026e33df51218f5
8099 8479 7816152913897001 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj 3dea5a3215558985
8059 8494 7816152913496909 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj c9030a5f2eeda9c8
8236 8506 7816152915261456 esp-idf/esp_pm/libesp_pm.a b1874dd960696174
8120 8542 7816152914143860 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj 44b96e0b7aedcd2e
7935 8551 7816152912256150 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj e8e5f691d2ec3f92
8365 8575 7816152916554987 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj 597466f37b5dccea
8152 8585 7816152914452360 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 164cb541574cd84e
8143 8598 7816152914332234 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj ae2bc6e6a2ec0339
8087 8614 7816152913779530 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj 4e4d55d1f9bec14b
8250 8624 7816152915397960 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj 89d63014fbc66a19
8168 8639 7816152914580391 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 96a1339ad1aaf555
8192 8649 7816152914828422 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj efc9356d19566fb4
8080 8666 7816152913699318 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj 1d559543c1a8dc1d
8221 8683 7816152915112278 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj 705f4f7365fd6d26
8133 8693 7816152914234455 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b2fa38fc277ceee2
8287 8710 7816152915775964 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj b595a71809dfd603
8205 8720 7816152914963279 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj 721e773fe5f2fd1b
8385 8730 7816152916751617 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 41580b7835dad65b
8403 8746 7816152916928596 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 8b667f559244d2a7
8179 8759 7816152914694867 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 10b49d1d277a9f2c
8422 8777 7816152917118764 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj cd78a74c07f03107
8375 8787 7816152916649354 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj d7663338d5a1fe4e
8412 8798 7816152917017996 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj 48a4fbdd429a1466
8432 8808 7816152917223104 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj eb0c08bd768b27cd
8509 8818 7816152918000574 esp-idf/esp_timer/libesp_timer.a fd232526153d0817
8395 8843 7816152916850950 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj 834b04612230500a
8588 8874 7816152918790436 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj 5ab6610152cfdbd9
8479 8890 7816152917694021 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b4f4260c662c0e83
8468 8901 7816152917589719 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 5cadd90ee0032853
8319 8911 7816152916089508 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj ecd2f81714921d05
8542 8969 7816152918320685 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 588c233c55c9c4f0
8639 8981 7816152919292572 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj c7a7a24fde84e600
8625 8995 7816152919146820 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj e3db7b870fc41082
8443 9006 7816152917376161 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj cc1a310d158f7214
8655 9020 7816152919460080 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj 39563588eb01d459
8562 9037 7816152918532453 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj c1c7e7f8058affef
8458 9076 7816152917485419 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj 3383afde30acac9b
8599 9142 7816152918889773 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj a654b7ac42c9b681
8787 9154 7816152920775803 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 744caaaa41f917b1
8834 9167 7816152921245107 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 3cec0baf74cf3990
8693 9183 7816152919835656 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 4e2e3d747d25a1f2
8666 9193 7816152919619011 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj a0ddcefac59ddd25
8798 9207 7816152920885070 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj bcc9820401270fd7
8496 9208 7816152917866483 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj eebfd2198c285692
8911 9208 7816152922015046 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj dbb0572b5b98b417
8683 9209 7816152919731357 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 836e5abc442ce9
8809 9216 7816152920994344 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b90f42682ed358cb
8710 9249 7816152920004519 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj e649c8e80d781b7e
8981 9253 7816152922715355 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b539bd44b25dc0bf
8969 9254 7816152922596043 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj a26d60f9ced4a1a5
8901 9267 7816152921915713 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 9a2480c1772c2b0c
9076 9286 7816152923664712 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj 19452b91935ae7f2
8891 9301 7816152921811419 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj f0508d5d5154565
8875 9317 7816152921652481 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 6746071411053376
8614 9318 7816152919043737 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj 27312fc1a9e9e535
9020 9340 7816152923107722 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj 3cadb211b06fe9d2
8730 9358 7816152920208164 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj ca530f62ec1167ed
8763 9363 7816152920537188 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 24682dc3d7e1e069
8575 9364 7816152918656624 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj 8fa37bb6eb038d0e
9143 9379 7816152924330409 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj 587aa08d02c68910
9006 9380 7816152922963688 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj 4a83e99a356087bb
9168 9381 7816152924578734 esp-idf/xtensa/libxtensa.a 4b381c496445ac91
8843 9384 7816152921339591 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj 70a8277661f81c31
9037 9386 7816152923271638 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj f38301963b1945de
8996 9395 7816152922864356 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 3e35e5842ded9697
8720 9395 7816152920108818 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 4bd9777efc7d7886
8746 9451 7816152920361687 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b7be92b9a1628bdc
8777 9503 7816152920676478 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 8208e3c3d69a7564
5968 14651 7816152979377227 bootloader-prefix/src/bootloader-stamp/bootloader-configure e8cf4d3f22b29ed0
5968 14651 7816152979377227 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure e8cf4d3f22b29ed0

610
build/CMakeCache.txt Normal file
View File

@ -0,0 +1,610 @@
# This is the CMakeCache file.
# For build in directory: e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build
# It was generated by CMake: E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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
//Linker Base Flags
CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles '
//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=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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)/signal_generator
//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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=signal_generator
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=3.6.4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=3
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=6
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=D:/ESP_IDF/v5.5.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=E:/QX_Tech/ESP32_Test/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
//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=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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=D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//No help, variable specified on the command line.
SDKCONFIG:UNINITIALIZED=e:\QX_Tech\Simulator\ESP32_TEST\signal_generator\sdkconfig
//Allow unsafe builds. These builds ARE NOT SECURE.
UNSAFE_BUILD:BOOL=OFF
//Build Mbed TLS shared library.
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
//Build Mbed TLS static library.
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf
//Dependencies for the target
everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_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;
//Value Computed by CMake
signal_generator_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build
//Value Computed by CMake
signal_generator_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
signal_generator_SOURCE_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator
########################
# 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=e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator
//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=69
//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=E:/QX_Tech/ESP32_Test/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=[E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()]
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/signal_generator
//Compiler reason failure
_Python3_Compiler_REASON_FAILURE:INTERNAL=
//Development reason failure
_Python3_Development_REASON_FAILURE:INTERNAL=
_Python3_EXECUTABLE:INTERNAL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;e:\QX_Tech\ESP32_Test\tools\idf-python\3.11.2\Lib;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib\site-packages;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib\site-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=4ee45e54cff682c447832937a221b157
//NumPy reason failure
_Python3_NumPy_REASON_FAILURE:INTERNAL=

View File

@ -0,0 +1,29 @@
set(CMAKE_ASM_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_ASM_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_ASM_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/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 )

View File

@ -0,0 +1,82 @@
set(CMAKE_C_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_C_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,106 @@
set(CMAKE_CXX_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_CXX_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_CXX_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/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")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.26100")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
include("D:/ESP_IDF/v5.5.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)

View File

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

Binary file not shown.

View File

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

Binary file not shown.

View File

@ -0,0 +1,591 @@
---
events:
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
The target system is: Generic - -
The host system is: Windows - 10.0.26100 - AMD64
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/3.30.2/CompilerIdC/a.out
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
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:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_e1d83
[1/2] E:\\QX_Tech\\ESP32_Test\\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_e1d83.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/'
E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1d83.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\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/'
E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s
COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.'\x0d
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -o cmTC_e1d83 && cd ."
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_e1d83 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'\x0d
exitCode: 0
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
add: [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Parsed C implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy']
ignore line: []
ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_e1d83]
ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\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_e1d83.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1d83.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\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
ignore line: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s]
ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.'\x0d]
ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -o cmTC_e1d83 && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.']
link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_e1d83 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc]
arg [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.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=E:/QX_Tech/ESP32_Test/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_e1d83] ==> ignore
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
ignore line: [E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00400054]
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' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'\x0d]
ignore line: []
ignore line: []
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/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: []
implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_cda1a
[1/2] E:\\QX_Tech\\ESP32_Test\\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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/'
E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cda1a.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\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/'
E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s
COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.'\x0d
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_cda1a && cd ."
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_cda1a -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'\x0d
exitCode: 0
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
add: [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0]
collapse include dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:8 (project)"
message: |
Parsed CXX implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k']
ignore line: []
ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_cda1a]
ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cda1a.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\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
ignore line: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s]
ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.'\x0d]
ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_cda1a && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.']
link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_cda1a -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc]
arg [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.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=E:/QX_Tech/ESP32_Test/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_cda1a] ==> ignore
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
ignore line: [E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00400054]
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' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'\x0d]
ignore line: []
ignore line: []
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/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: []
implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)"
- "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:139 (find_package)"
checks:
- "Performing Test CMAKE_HAVE_LIBC_PTHREAD"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_HAVE_LIBC_PTHREAD"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_b2a20
[1/2] E:\\QX_Tech\\ESP32_Test\\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_b2a20.dir/src.c.obj -c E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf/src.c
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles CMakeFiles/cmTC_b2a20.dir/src.c.obj -o cmTC_b2a20 && cd ."
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail
E:/QX_Tech/ESP32_Test/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_b2a20.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail\x0d
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054\x0d
exitCode: 0
-
kind: "try_compile-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)"
- "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:222 (CHECK_C_COMPILER_FLAG)"
checks:
- "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_0ae66
[1/2] E:\\QX_Tech\\ESP32_Test\\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_0ae66.dir/src.c.obj -c E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y/src.c
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles CMakeFiles/cmTC_0ae66.dir/src.c.obj -o cmTC_0ae66 && cd ."
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054\x0d
exitCode: 0
...

View File

@ -0,0 +1,510 @@
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/menuconfig.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/confserver.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/save-defconfig.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/gen_project_binary.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/app.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/erase_flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/merge-bin.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/monitor.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/encrypted-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/_project_elf_src.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/signal_generator.elf.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size-files.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size-components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu-list.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/uf2.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/uf2-app.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/__ldgen_output_sections.ld.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/__idf_hal.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/__idf_log.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/__idf_heap.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/__idf_soc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/__idf_driver.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/__idf_main.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/list_install_components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install/local.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install/strip.dir

View File

@ -0,0 +1,43 @@
{
"sources" :
[
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader-complete.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule"
},
{
"file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule"
}
],
"target" :
{
"labels" :
[
"bootloader"
],
"name" : "bootloader"
}
}

View File

@ -0,0 +1,13 @@
# Target labels
bootloader
# Source files and their labels
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader-complete.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule

View File

@ -0,0 +1,24 @@
# Additional clean files
cmake_minimum_required(VERSION 3.16)
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
file(REMOVE_RECURSE
"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"
"signal_generator.bin"
"signal_generator.map"
"x509_crt_bundle.S"
)
endif()

View File

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

View File

@ -0,0 +1 @@
fcae32885b0296b32044cb99ecbdc50d98dddb83

View File

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

View File

@ -0,0 +1 @@
fcae32885b0296b32044cb99ecbdc50d98dddb83

1095
build/CMakeFiles/rules.ninja Normal file

File diff suppressed because it is too large Load Diff

2
build/app-flash_args Normal file
View File

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

View File

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

View File

@ -0,0 +1,6 @@
# This is a generated file and its contents are an internal implementation detail.
# The update step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
command=
work_dir=

View File

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

View File

@ -0,0 +1,7 @@
# This is a generated file and its contents are an internal implementation detail.
# The patch step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
command (connected)=
command (disconnected)=
work_dir=

View File

@ -0,0 +1 @@
cmd='E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig;-DIDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'

View File

@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
# would cause a fatal error, even though it would be a no-op.
if(NOT EXISTS "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader"
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix"
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/tmp"
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp"
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src"
"E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()

View File

@ -0,0 +1,444 @@
# This is the CMakeCache file.
# For build in directory: e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader
# It was generated by CMake: E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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
//Linker Base Flags
CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles '
//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=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=D:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader
//Git command line client
GIT_EXECUTABLE:FILEPATH=E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe
//No help, variable specified on the command line.
IDF_PATH:UNINITIALIZED=D:/ESP_IDF/v5.5.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=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator
//No help, variable specified on the command line.
PYTHON:UNINITIALIZED=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//No help, variable specified on the command line.
SDKCONFIG:UNINITIALIZED=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig
//Value Computed by CMake
bootloader_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader
//Value Computed by CMake
bootloader_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
bootloader_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=26
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=E:/QX_Tech/ESP32_Test/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=[E:/QX_Tech/ESP32_Test/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

View File

@ -0,0 +1,29 @@
set(CMAKE_ASM_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_ASM_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_ASM_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/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 )

View File

@ -0,0 +1,82 @@
set(CMAKE_C_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_C_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,106 @@
set(CMAKE_CXX_COMPILER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe")
set(CMAKE_CXX_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe")
set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe")
set(CMAKE_CXX_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/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")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.26100")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
include("D:/ESP_IDF/v5.5.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)

View File

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

Binary file not shown.

View File

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

Binary file not shown.

View File

@ -0,0 +1,526 @@
---
events:
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
The target system is: Generic - -
The host system is: Windows - 10.0.26100 - AMD64
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
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:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_789bb
[1/2] E:\\QX_Tech\\ESP32_Test\\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_789bb.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/'
E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_789bb.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\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/'
E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s
COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.'\x0d
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -o cmTC_789bb && cd ."
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_789bb -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'\x0d
exitCode: 0
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
add: [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Parsed C implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9']
ignore line: []
ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_789bb]
ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\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_789bb.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_789bb.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\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
ignore line: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s]
ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.'\x0d]
ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -o cmTC_789bb && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.']
link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_789bb -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc]
arg [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.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=E:/QX_Tech/ESP32_Test/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_789bb] ==> ignore
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
ignore line: [E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00400054]
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' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'\x0d]
ignore line: []
ignore line: []
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/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: []
implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
implicit fwks: []
-
kind: "try_compile-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc"
binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc"
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: "-nostartfiles "
CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party"
buildResult:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc'
Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_82f29
[1/2] E:\\QX_Tech\\ESP32_Test\\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_82f29.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/'
E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82f29.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\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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:
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/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
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed
E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/'
E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s
COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.'\x0d
[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_82f29 && cd ."
Using built-in specs.
COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/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/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'
E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_82f29 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc
E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start; defaulting to 00400054
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'\x0d
exitCode: 0
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed]
add: [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0]
collapse include dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include]
collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include]
-
kind: "message-v1"
backtrace:
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)"
- "CMakeLists.txt:72 (project)"
message: |
Parsed CXX implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc']
ignore line: []
ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_82f29]
ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\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_82f29.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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 E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82f29.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\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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 "E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include]
ignore line: [ E:/QX_Tech/ESP32_Test/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: [ E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/']
ignore line: [ E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s]
ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.'\x0d]
ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\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 -nostartfiles -v CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_82f29 && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/]
ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/]
ignore line: [E:/QX_Tech/ESP32_Test/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: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
ignore line: [E:/QX_Tech/ESP32_Test/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' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.']
link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_82f29 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/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 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc]
arg [E:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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=E:/QX_Tech/ESP32_Test/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\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.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=E:/QX_Tech/ESP32_Test/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_82f29] ==> ignore
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc]
arg [-LE:/QX_Tech/ESP32_Test/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 [E:/QX_Tech/ESP32_Test/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 [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
arg [CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
ignore line: [E:/QX_Tech/ESP32_Test/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: warning: cannot find entry symbol _start]
ignore line: [ defaulting to 00400054]
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' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'\x0d]
ignore line: []
ignore line: []
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc]
collapse library dir [E:/QX_Tech/ESP32_Test/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] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib]
collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/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: []
implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib]
implicit fwks: []
...

View File

@ -0,0 +1,92 @@
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/menuconfig.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/confserver.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/save-defconfig.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/gen_project_binary.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/app.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/erase_flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/merge-bin.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/monitor.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/_project_elf_src.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/bootloader.elf.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size-files.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size-components.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu-list.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu-flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/uf2.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/uf2-app.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir
E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir

View File

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

View File

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

View File

@ -0,0 +1 @@
fcae32885b0296b32044cb99ecbdc50d98dddb83

View File

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

View File

@ -0,0 +1 @@
fcae32885b0296b32044cb99ecbdc50d98dddb83

View 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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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}E:\QX_Tech\ESP32_Test\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 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\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 = E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning additional files.
rule CLEAN_ADDITIONAL
command = E:\QX_Tech\ESP32_Test\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 = E:\QX_Tech\ESP32_Test\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 = E:\QX_Tech\ESP32_Test\tools\ninja\1.12.1\ninja.exe -t targets
description = All primary targets available:

2878
build/bootloader/build.ninja Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,62 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/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("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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 "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@ -0,0 +1,632 @@
[
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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 -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.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 E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\bootloader\\project_elf_src_esp32s3.c",
"file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\bootloader\\project_elf_src_esp32s3.c",
"output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c",
"output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c",
"output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c",
"output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c",
"output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c",
"output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c",
"output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c",
"output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c",
"output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c",
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c",
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c",
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c",
"output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c",
"output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c",
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c",
"output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c",
"output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.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 D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c",
"output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.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 D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S",
"file": "D:\\ESP_IDF\\v5.5.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": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c",
"output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj"
},
{
"directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader",
"command": "E:\\QX_Tech\\ESP32_Test\\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.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.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=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c",
"file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c",
"output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj"
}
]

View File

@ -0,0 +1,12 @@
{
"COMPONENT_KCONFIGS": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig",
"COMPONENT_KCONFIGS_PROJBUILD": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild",
"COMPONENT_SDKCONFIG_RENAMES": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename",
"IDF_TARGET": "esp32s3",
"IDF_TOOLCHAIN": "gcc",
"IDF_VERSION": "5.5.1",
"IDF_ENV_FPGA": "",
"IDF_PATH": "D:/ESP_IDF/v5.5.1/esp-idf",
"COMPONENT_KCONFIGS_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs.in",
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs_projbuild.in"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,703 @@
/*
* Automatically generated file. DO NOT EDIT.
* Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header
*/
#pragma once
#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_UHCI_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_CAM_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_CACHE_ACS_INVALID_STATE_ON_PANIC 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 0x40
#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_SUPPORTS_PCM2PDM 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM2PCM 1
#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2
#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_MPU_MIN_REGION_SIZE 0x20000000
#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8
#define CONFIG_SOC_PCNT_GROUPS 1
#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4
#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2
#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2
#define CONFIG_SOC_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_SUPPORTED 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_MIN_CHAN_ID 1
#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14
#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1
#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_SUPPORT_DENOISE_CHAN 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_MASK_FILTER_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_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1
#define CONFIG_SOC_UHCI_NUM 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_CLK_LP_FAST_SUPPORT_XTAL_D2 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_FLASH_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_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1
#define CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM 1
#define CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX 16
#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.5.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_VERSION_1 1
#define CONFIG_BOOTLOADER_LOG_VERSION 1
#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1
#define CONFIG_BOOTLOADER_LOG_LEVEL 3
#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1
#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1
#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
#define CONFIG_BOOTLOADER_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_SPI_FLASH_MMAP 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_ESP_ROM_CONSOLE_OUTPUT_SECONDARY 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_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1
#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1
#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1
#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1
#define CONFIG_GDMA_OBJ_DRAM_SAFE 1
#define CONFIG_XTAL_FREQ_40 1
#define CONFIG_XTAL_FREQ 40
#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_BROWNOUT_USE_INTR 1
#define CONFIG_ESP_INTR_IN_IRAM 1
#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1
#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_IN_IRAM 1
#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_SYSTEM_BBPLL_RECALIB 1
#define CONFIG_ESP_IPC_ENABLE 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_FREERTOS_IN_IRAM 1
#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_VERSION_1 1
#define CONFIG_LOG_VERSION 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_LOG_MODE_TEXT_EN 1
#define CONFIG_LOG_MODE_TEXT 1
#define CONFIG_LOG_IN_IRAM 1
#define CONFIG_LIBC_NEWLIB 1
#define CONFIG_LIBC_MISC_IN_IRAM 1
#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1
#define CONFIG_LIBC_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_PLACE_FUNCTIONS_IN_IRAM 1
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1
#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1
#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20
#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1
#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192
#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED 1
#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED 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_LIBC_TIME_SYSCALL_USE_RTC_HRT
#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT
#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY
#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR
#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO
#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT
#define CONFIG_INT_WDT_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_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT
#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_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM
#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS
#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE
#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE
#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE
#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0
#define CONFIG_TASK_WDT_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

View File

@ -0,0 +1,823 @@
{
"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_MODE_TEXT": true,
"BOOTLOADER_LOG_MODE_TEXT_EN": true,
"BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true,
"BOOTLOADER_LOG_VERSION": 1,
"BOOTLOADER_LOG_VERSION_1": true,
"BOOTLOADER_OFFSET_IN_FLASH": 0,
"BOOTLOADER_PROJECT_VER": 1,
"BOOTLOADER_REGION_PROTECTION_ENABLE": true,
"BOOTLOADER_RESERVE_RTC_SIZE": 0,
"BOOTLOADER_SKIP_VALIDATE_ALWAYS": false,
"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false,
"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false,
"BOOTLOADER_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_BROWNOUT_USE_INTR": true,
"ESP_CONSOLE_NONE": false,
"ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0,
"ESP_CONSOLE_SECONDARY_NONE": false,
"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true,
"ESP_CONSOLE_UART": true,
"ESP_CONSOLE_UART_BAUDRATE": 115200,
"ESP_CONSOLE_UART_CUSTOM": false,
"ESP_CONSOLE_UART_DEFAULT": true,
"ESP_CONSOLE_UART_NUM": 0,
"ESP_CONSOLE_USB_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_INTR_IN_IRAM": true,
"ESP_INT_WDT": true,
"ESP_INT_WDT_CHECK_CPU1": true,
"ESP_INT_WDT_TIMEOUT_MS": 300,
"ESP_IPC_ENABLE": true,
"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_PERIPH_CTRL_FUNC_IN_IRAM": true,
"ESP_REGI2C_CTRL_FUNC_IN_IRAM": true,
"ESP_REV_MAX_FULL": 99,
"ESP_REV_MIN_FULL": 0,
"ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true,
"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_SPI_FLASH_MMAP": 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_PRINT_IN_IRAM": 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_CHECK_INT_LEVEL_4": true,
"ESP_SYSTEM_EVENT_QUEUE_SIZE": 32,
"ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304,
"ESP_SYSTEM_IN_IRAM": true,
"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_IN_IRAM": 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_HANDLER_IN_IRAM": true,
"GDMA_ISR_IRAM_SAFE": false,
"GDMA_OBJ_DRAM_SAFE": true,
"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.5.1",
"IDF_TARGET": "esp32s3",
"IDF_TARGET_ARCH": "xtensa",
"IDF_TARGET_ARCH_XTENSA": true,
"IDF_TARGET_ESP32S3": true,
"IDF_TOOLCHAIN": "gcc",
"IDF_TOOLCHAIN_GCC": true,
"LIBC_LOCKS_PLACE_IN_IRAM": true,
"LIBC_MISC_IN_IRAM": true,
"LIBC_NEWLIB": true,
"LIBC_NEWLIB_NANO_FORMAT": false,
"LIBC_TIME_SYSCALL_USE_HRT": false,
"LIBC_TIME_SYSCALL_USE_NONE": false,
"LIBC_TIME_SYSCALL_USE_RTC": false,
"LIBC_TIME_SYSCALL_USE_RTC_HRT": true,
"LOG_COLORS": false,
"LOG_DEFAULT_LEVEL": 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_IN_IRAM": 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_MODE_TEXT": true,
"LOG_MODE_TEXT_EN": true,
"LOG_TAG_LEVEL_CACHE_ARRAY": false,
"LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true,
"LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true,
"LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31,
"LOG_TAG_LEVEL_IMPL_LINKED_LIST": false,
"LOG_TAG_LEVEL_IMPL_NONE": false,
"LOG_TIMESTAMP_SOURCE_RTOS": true,
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
"LOG_VERSION": 1,
"LOG_VERSION_1": true,
"LOG_VERSION_2": false,
"MMU_PAGE_MODE": "64KB",
"MMU_PAGE_SIZE": 65536,
"MMU_PAGE_SIZE_64KB": 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,
"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_ACS_INVALID_STATE_ON_PANIC": true,
"SOC_CACHE_FREEZE_SUPPORTED": true,
"SOC_CACHE_SUPPORT_WRAP": true,
"SOC_CACHE_WRITEBACK_SUPPORTED": true,
"SOC_CCOMP_TIMER_SUPPORTED": true,
"SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": 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_PCM2PDM": true,
"SOC_I2S_SUPPORTS_PDM": true,
"SOC_I2S_SUPPORTS_PDM2PCM": 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_CAM_DATA_WIDTH_MAX": 16,
"SOC_LCDCAM_CAM_PERIPH_NUM": 1,
"SOC_LCDCAM_CAM_SUPPORTED": true,
"SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV": 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_SUPPORTED": 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": 1,
"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_FLASH_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_MAX_CHAN_ID": 14,
"SOC_TOUCH_MIN_CHAN_ID": 1,
"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_BENCHMARK": true,
"SOC_TOUCH_SUPPORT_DENOISE_CHAN": true,
"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_MASK_FILTER_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_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true,
"SOC_UHCI_NUM": 1,
"SOC_UHCI_SUPPORTED": 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_C6_H2_SUSPEND": false,
"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_PLACE_FUNCTIONS_IN_IRAM": true,
"SPI_FLASH_ROM_DRIVER_PATCH": true,
"SPI_FLASH_ROM_IMPL": false,
"SPI_FLASH_SIZE_OVERRIDE": false,
"SPI_FLASH_SUPPORT_BOYA_CHIP": 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_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true,
"SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true,
"SPI_FLASH_VERIFY_WRITE": false,
"SPI_FLASH_WRITE_CHUNK_SIZE": 8192,
"SPI_FLASH_YIELD_DURING_ERASE": true,
"XTAL_FREQ": 40,
"XTAL_FREQ_40": true
}

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,144 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/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("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/cmake_install.cmake")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/efuse
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,54 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/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("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3
# 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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3
# 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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/freertos
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/hal
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/log
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/newlib
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/soc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,39 @@
# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa
# 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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
endif()

View File

@ -0,0 +1,7 @@
# Connect to the default openocd-esp port and stop on app_main()
set remotetimeout 10
target remote :3333
monitor reset halt
maintenance flush register-cache
thbreak app_main
continue

View File

@ -0,0 +1,2 @@
source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/symbols
source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/connect

View File

@ -0,0 +1 @@
# There is no prefix map defined for the project.

View File

@ -0,0 +1,7 @@
# Add Python GDB extensions
python
try:
import freertos_gdb
except ModuleNotFoundError:
print('warning: python extension "freertos_gdb" not found.')
end

View File

@ -0,0 +1,20 @@
# Load esp32s3 ROM ELF symbols
define target hookpost-remote
set confirm off
# if $_streq((char *) 0x3ff194ad, "Mar 1 2021")
if (*(int*) 0x3ff194ad) == 0x2072614d && (*(int*) 0x3ff194b1) == 0x32203120 && (*(int*) 0x3ff194b5) == 0x313230
add-symbol-file e:/QX_Tech/ESP32_Test/tools/esp-rom-elfs/20241011/esp32s3_rev0_rom.elf
else
echo Warning: Unknown esp32s3 ROM revision.\n
end
set confirm on
end
# Load bootloader symbols
set confirm off
# Bootloader elf was not found
set confirm on
# Load application symbols
file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf

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