Modbus TCP v1
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
build
|
||||
126
README.txt
126
README.txt
@@ -1,42 +1,98 @@
|
||||
This is a simplified version of Modbus TCP that allows PICS to simulate the equipment:
|
||||
Modbus TCP (CSV Configuartion):
|
||||
|
||||
- All you need to do to get this running is going into the spiffs folder and open Objects.csv
|
||||
|
||||
- You wil create your Modbus Register Map, this will based on the equipment or UDTs
|
||||
|
||||
- For Input Coil & Input Registers, you will need to create a Output Coil & Holding Register to edit the value
|
||||
|
||||
- Once you modify the Objects.csv file, build and flash the program into the ESP32 board
|
||||
|
||||
- Go to TOP Server and add the Modbus TCP/IP device
|
||||
|
||||
|
||||
For PICS:
|
||||
|
||||
- Create an I/O Connection, Set it as OPC Client, choose TOPServer
|
||||
|
||||
- To add the Modbus Device (ESP32), create an I/O Variable, Name the I/O
|
||||
1. Start Here!
|
||||
a. Go into the "spiffs" folder and open "device_config.ini"
|
||||
|
||||
- Under Address, you will follow how Ignition UDT works.
|
||||
|
||||
- Device Channel . Device . Tag Name (Address)
|
||||
|
||||
- EX: DFW2_DC3_COD_A11_CH.DFW2_DC3_COD_A11.30001
|
||||
b. Under [wifi] you will enter the SSID (Name) of your wifi router
|
||||
and password.
|
||||
|
||||
- You will be able to view the data or edit the value
|
||||
c. Setup the "static_ip" of the device, "gateway" of the network (router)
|
||||
and leave "netmask" as default (255.255.255.0).
|
||||
|
||||
d. Under [modbus] leave port as default (502), leave max_clients as default (10)
|
||||
and modify "device_count" to the max amount of devices you want to simulate
|
||||
- Note: This will be based on the size of the modbus mapping you will use, the larger
|
||||
the larger the mapping the more memory, the less devices you can simulate.
|
||||
|
||||
e. Under [device 1], use this as a template to add devices, leave "enabled" as default (1),
|
||||
modify "unit_id", do not have duplicate IDs, "name" has to follow Deivce_x, "csv" will match the
|
||||
csv file mapping you created or copied over.
|
||||
|
||||
2. Creating CSV Files for Modbus TCP devices
|
||||
|
||||
a. In the "spiffs" folder, there is a csv file called "Tempalte.csv"
|
||||
- Use this as reference on how to create your devices
|
||||
|
||||
type,address,name,data_type,control_address,pics_address,pics_data_type,notes
|
||||
|
||||
|
||||
Objects.csv Template / Example:
|
||||
type: Can be an Input Coil (Input), Output Coil (Output), Input Holding Register (Input_Holding), or Output Holding Register (Holding_Reg)
|
||||
address: Modbus Register, Inputs: 1 - 9999, Outputs: 10000 - 19999, Input_Holding: 30000 - 39999, Holding_Reg: 40000 - 49999 (They can be 6 digits long as well)
|
||||
name: Name of Modbus Register
|
||||
data_type: bool, uint16, float, uint32, double
|
||||
control_address: Address of Ouput or Holding_Reg that will control this Input; if it's an output leave it blank
|
||||
notes: Any text that will help you identify it
|
||||
b. For Column "type" this will be the Modbus Register type
|
||||
- Coil
|
||||
- Discrete_Input
|
||||
- Input_Register
|
||||
- Holding_Register
|
||||
|
||||
c. For Column "address", you will enter the modbus register , can be 5 digits or 6 digits
|
||||
- Coil: 00001 -> 09999 or 000001 -> 099999
|
||||
- Discrete_Input: 10001 -> 19999 or 100001 -> 199999
|
||||
- Input_Register: 30001 -> 39999 or 300001 -> 399999
|
||||
- Holding_Register: 40001 -> 49999 or 400001 -> 499999
|
||||
|
||||
type,address,name,data_type,control_address,notes
|
||||
Coil,1,DI1,bool,10005,Digital Input 1
|
||||
Discrete_Input,10005,DO1,bool,,Digital Output 2
|
||||
Input_Register,320315,AI1,uint16,465921,Analog Input 1
|
||||
Holding_Register,465921,AO1,uint16,,Analog Output 1
|
||||
d. For Column "name", enter the name of that point, can be whatever you want
|
||||
|
||||
e. For Column "data_type", this will be the type of data the point represents
|
||||
- Coil: bool only
|
||||
- Discrete_Input: bool only
|
||||
- Input_Register: uint16, uint32, or float
|
||||
- Holding_Register: uint16, uint32, or float
|
||||
|
||||
f. For Column "control_address", this is only for registers that are read only (inputs)
|
||||
- Create a counterpart of that input and type in the "address" of that point into "control_address"
|
||||
|
||||
- For Example: Discrete_Input,10001,DI_1,bool,00001,,,,
|
||||
Coil,00001,DI_1_Ovr,bool,,,,,
|
||||
|
||||
Input_Register,30001,AI_1,uint16,40001,,,,
|
||||
Holding_Register,40001,AI_1_Ovr,uint16,,,,
|
||||
|
||||
g. For Column "pics_address", this will be the address PICS uses to modify the data
|
||||
- You cannot use the modbus register (address) as PICS write the data in this fashion
|
||||
- Recommended default start is 410001
|
||||
- Also you do not need to add this address on Coil data types as it's 1 for 1
|
||||
- This is primarly needed for Holding_Register
|
||||
|
||||
- PICS Data:
|
||||
- Boolean = sends data in 1 register
|
||||
- Integer = sends data in 2 registers
|
||||
- Float = sends data in 4 registers
|
||||
|
||||
h. For Column "pics_data_type", the type of data pics is sending to that modbus register
|
||||
- Look at g. for the PICS Data.
|
||||
|
||||
i. For Column "notes", enter notes to help you understand the purpose of that modbus register
|
||||
|
||||
3. Increasing Modbus MAX Points
|
||||
|
||||
a. Once you complete your device csv file, head to "main" -> "modbus_points.h"
|
||||
|
||||
b. At the very top of the file, find "#define MODBUS_MAX_POINTS"
|
||||
- Modify this value based on the maximum registers needed for your device
|
||||
|
||||
4. Starting Modbus TCP Device
|
||||
|
||||
a. Once you complete setting up the device, you are ready to flash the device
|
||||
|
||||
b. Download ESP32 IDF from Espressif Systems
|
||||
Link: https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/windows-setup.html
|
||||
|
||||
Install the EIM, follow the easy installation
|
||||
|
||||
c. Once in the dashboard, click on open IDF terminal
|
||||
|
||||
d. Run these commands:
|
||||
- cd "Location the program is stored at"
|
||||
- idf.py fullclean
|
||||
- idf.py build
|
||||
- idf.py -p COM# flash monitor (COM# is the COM port number, look in Device Manager -> Ports)
|
||||
|
||||
5. Verify with Modscan32
|
||||
|
||||
@@ -1 +1 @@
|
||||
730ed0823d1e8e4bce57e4f96a63d1a3 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/modbus_tcp_esp32.bin
|
||||
2bd1bdd33f85538212ddc86bc4d2af48 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/modbus_tcp_esp32.bin
|
||||
|
||||
Binary file not shown.
2120
build/.ninja_log
2120
build/.ninja_log
File diff suppressed because it is too large
Load Diff
@@ -80,8 +80,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oeys31"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oeys31"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-gqatmg"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-gqatmg"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -91,10 +91,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oeys31'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-gqatmg'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_077cb
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_90936
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||
Target: xtensa-esp-elf
|
||||
@@ -102,8 +102,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_077cb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccRj8kA2.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_90936.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccM4hCWz.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -120,12 +120,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccRj8kA2.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccM4hCWz.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj -o cmTC_077cb && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj -o cmTC_90936 && cd ."
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||
COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe
|
||||
@@ -136,9 +136,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_077cb' '-dumpdir' 'cmTC_077cb.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccZ36u6d.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_077cb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqp4j7h -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_077cb' '-dumpdir' 'cmTC_077cb.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_90936' '-dumpdir' 'cmTC_90936.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq9XwCH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_90936 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm8KY8e -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_90936' '-dumpdir' 'cmTC_90936.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -173,10 +173,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oeys31']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-gqatmg']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_077cb]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_90936]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||
ignore line: [Target: xtensa-esp-elf]
|
||||
@@ -184,8 +184,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_077cb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccRj8kA2.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_90936.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccM4hCWz.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -202,8 +202,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccRj8kA2.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccM4hCWz.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -215,8 +215,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_077cb.dir/CMakeCCompilerABI.c.obj -o cmTC_077cb && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_90936.dir/CMakeCCompilerABI.c.obj -o cmTC_90936 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe]
|
||||
@@ -236,13 +236,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_077cb' '-dumpdir' 'cmTC_077cb.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccZ36u6d.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_077cb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqp4j7h -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_90936' '-dumpdir' 'cmTC_90936.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq9XwCH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_90936 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm8KY8e -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccZ36u6d.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq9XwCH.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||
@@ -251,7 +251,7 @@ events:
|
||||
arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_077cb] ==> ignore
|
||||
arg [cmTC_90936] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o]
|
||||
@@ -263,7 +263,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqp4j7h] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm8KY8e] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lnosys] ==> lib [nosys]
|
||||
@@ -271,7 +271,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_077cb' '-dumpdir' 'cmTC_077cb.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_90936' '-dumpdir' 'cmTC_90936.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -303,8 +303,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-z9w1ku"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-z9w1ku"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-kn913a"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-kn913a"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -315,10 +315,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-z9w1ku'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-kn913a'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_befd9
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_6fde9
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||
Target: xtensa-esp-elf
|
||||
@@ -326,8 +326,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_befd9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgorhds.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_6fde9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEwQhP8.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -350,12 +350,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgorhds.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEwQhP8.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_befd9 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_6fde9 && cd ."
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||
COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe
|
||||
@@ -366,9 +366,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_befd9' '-dumpdir' 'cmTC_befd9.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc433gRA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_befd9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgVdPC1 -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_befd9' '-dumpdir' 'cmTC_befd9.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_6fde9' '-dumpdir' 'cmTC_6fde9.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckq7y5g.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_6fde9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGuvo5n -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_6fde9' '-dumpdir' 'cmTC_6fde9.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -409,10 +409,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-z9w1ku']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-kn913a']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_befd9]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_6fde9]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||
ignore line: [Target: xtensa-esp-elf]
|
||||
@@ -420,8 +420,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_befd9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgorhds.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_6fde9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEwQhP8.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -444,8 +444,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgorhds.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEwQhP8.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -457,8 +457,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_befd9.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_befd9 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_6fde9.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_6fde9 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe]
|
||||
@@ -478,13 +478,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_befd9' '-dumpdir' 'cmTC_befd9.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc433gRA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_befd9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgVdPC1 -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_6fde9' '-dumpdir' 'cmTC_6fde9.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckq7y5g.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_6fde9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGuvo5n -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc433gRA.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckq7y5g.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||
@@ -493,7 +493,7 @@ events:
|
||||
arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_befd9] ==> ignore
|
||||
arg [cmTC_6fde9] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o]
|
||||
@@ -505,7 +505,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgVdPC1] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGuvo5n] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lnosys] ==> lib [nosys]
|
||||
@@ -513,7 +513,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_befd9' '-dumpdir' 'cmTC_befd9.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_6fde9' '-dumpdir' 'cmTC_6fde9.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -548,8 +548,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-mhdb11"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-mhdb11"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-4ok3c8"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-4ok3c8"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -559,10 +559,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-mhdb11'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-4ok3c8'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_47cdc
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_931df
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -576,8 +576,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_47cdc.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbaKuL.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_931df.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccfrbakY.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -596,12 +596,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbaKuL.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccfrbakY.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj -o cmTC_47cdc && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj -o cmTC_931df && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -618,10 +618,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_47cdc' '-dumpdir' 'cmTC_47cdc.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceLDx8T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_47cdc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccim7U6D -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_931df' '-dumpdir' 'cmTC_931df.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccp4XPta.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_931df -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEYLvNa -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_47cdc' '-dumpdir' 'cmTC_47cdc.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_931df' '-dumpdir' 'cmTC_931df.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -666,10 +666,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-mhdb11']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-4ok3c8']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_47cdc]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_931df]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -683,8 +683,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_47cdc.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbaKuL.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_931df.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccfrbakY.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -703,8 +703,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbaKuL.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccfrbakY.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -716,8 +716,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_47cdc.dir/CMakeCCompilerABI.c.obj -o cmTC_47cdc && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_931df.dir/CMakeCCompilerABI.c.obj -o cmTC_931df && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -743,13 +743,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_47cdc' '-dumpdir' 'cmTC_47cdc.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceLDx8T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_47cdc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccim7U6D -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_931df' '-dumpdir' 'cmTC_931df.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccp4XPta.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_931df -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEYLvNa -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceLDx8T.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccp4XPta.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -761,7 +761,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_47cdc] ==> ignore
|
||||
arg [cmTC_931df] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
@@ -772,7 +772,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccim7U6D] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEYLvNa] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -781,7 +781,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_47cdc' '-dumpdir' 'cmTC_47cdc.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_931df' '-dumpdir' 'cmTC_931df.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32]
|
||||
@@ -815,8 +815,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-ue75eg"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-ue75eg"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-vmuume"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-vmuume"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -827,10 +827,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-ue75eg'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-vmuume'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_84027
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9f4e3
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -844,8 +844,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_84027.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceBG9sf.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_9f4e3.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaGfATl.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -870,12 +870,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceBG9sf.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaGfATl.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_84027 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_9f4e3 && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -892,10 +892,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_84027' '-dumpdir' 'cmTC_84027.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPB5nSc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_84027 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccu30BAf -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_9f4e3' '-dumpdir' 'cmTC_9f4e3.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw1BSQy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_9f4e3 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccSS3AxX -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_84027' '-dumpdir' 'cmTC_84027.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_9f4e3' '-dumpdir' 'cmTC_9f4e3.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -946,10 +946,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-ue75eg']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-vmuume']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_84027]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9f4e3]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -963,8 +963,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_84027.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceBG9sf.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_9f4e3.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaGfATl.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -989,8 +989,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cceBG9sf.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaGfATl.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1002,8 +1002,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_84027.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_84027 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_9f4e3.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_9f4e3 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1029,13 +1029,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_84027' '-dumpdir' 'cmTC_84027.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPB5nSc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_84027 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccu30BAf -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_9f4e3' '-dumpdir' 'cmTC_9f4e3.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw1BSQy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_9f4e3 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccSS3AxX -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPB5nSc.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw1BSQy.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1047,7 +1047,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_84027] ==> ignore
|
||||
arg [cmTC_9f4e3] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
@@ -1058,7 +1058,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccu30BAf] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccSS3AxX] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -1067,7 +1067,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_84027' '-dumpdir' 'cmTC_84027.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_9f4e3' '-dumpdir' 'cmTC_9f4e3.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32]
|
||||
@@ -1097,8 +1097,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-585u11"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-585u11"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-91mbb7"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-91mbb7"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -1108,10 +1108,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-585u11'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-91mbb7'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_16b6c
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_67d1f
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1125,8 +1125,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_16b6c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNwVqCB.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_67d1f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6rP9FZ.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -1145,12 +1145,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNwVqCB.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6rP9FZ.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj -o cmTC_16b6c && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj -o cmTC_67d1f && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1167,10 +1167,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_16b6c' '-dumpdir' 'cmTC_16b6c.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclA8hYJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_16b6c -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cccQARKj -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67d1f' '-dumpdir' 'cmTC_67d1f.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOkDaYa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_67d1f -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cco5BZ8b -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_16b6c' '-dumpdir' 'cmTC_16b6c.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67d1f' '-dumpdir' 'cmTC_67d1f.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -1207,10 +1207,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-585u11']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-91mbb7']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_16b6c]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_67d1f]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -v -o CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1224,8 +1224,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_16b6c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNwVqCB.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_67d1f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6rP9FZ.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -1244,8 +1244,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNwVqCB.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6rP9FZ.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1257,8 +1257,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_16b6c.dir/CMakeCCompilerABI.c.obj -o cmTC_16b6c && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_67d1f.dir/CMakeCCompilerABI.c.obj -o cmTC_67d1f && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1284,13 +1284,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_16b6c' '-dumpdir' 'cmTC_16b6c.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclA8hYJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_16b6c -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cccQARKj -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67d1f' '-dumpdir' 'cmTC_67d1f.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOkDaYa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_67d1f -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cco5BZ8b -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclA8hYJ.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOkDaYa.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1302,7 +1302,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_16b6c] ==> ignore
|
||||
arg [cmTC_67d1f] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
@@ -1313,7 +1313,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cccQARKj] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cco5BZ8b] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -1322,7 +1322,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_16b6c' '-dumpdir' 'cmTC_16b6c.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67d1f' '-dumpdir' 'cmTC_67d1f.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti]
|
||||
@@ -1352,8 +1352,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oocrty"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oocrty"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-bs4ftt"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-bs4ftt"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -1364,10 +1364,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oocrty'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-bs4ftt'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_047f4
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_f17a7
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1381,8 +1381,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_047f4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclGc6K5.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_f17a7.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccBjFudq.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -1407,12 +1407,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclGc6K5.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccBjFudq.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_047f4 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_f17a7 && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1429,10 +1429,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_047f4' '-dumpdir' 'cmTC_047f4.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccpwCjBe.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_047f4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbde0i -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_f17a7' '-dumpdir' 'cmTC_f17a7.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclttoIy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_f17a7 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccunIk9W -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_047f4' '-dumpdir' 'cmTC_047f4.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_f17a7' '-dumpdir' 'cmTC_f17a7.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -1475,10 +1475,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-oocrty']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-bs4ftt']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_047f4]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_f17a7]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1492,8 +1492,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_047f4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclGc6K5.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_f17a7.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccBjFudq.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -1518,8 +1518,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclGc6K5.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccBjFudq.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1531,8 +1531,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_047f4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_047f4 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" -v CMakeFiles/cmTC_f17a7.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_f17a7 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1558,13 +1558,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_047f4' '-dumpdir' 'cmTC_047f4.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccpwCjBe.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_047f4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbde0i -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_f17a7' '-dumpdir' 'cmTC_f17a7.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclttoIy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_f17a7 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccunIk9W -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccpwCjBe.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclttoIy.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1576,7 +1576,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_047f4] ==> ignore
|
||||
arg [cmTC_f17a7] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
@@ -1587,7 +1587,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmbde0i] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccunIk9W] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -1596,7 +1596,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_047f4' '-dumpdir' 'cmTC_047f4.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_f17a7' '-dumpdir' 'cmTC_f17a7.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti]
|
||||
@@ -1628,8 +1628,8 @@ events:
|
||||
checks:
|
||||
- "Performing Test CMAKE_HAVE_LIBC_PTHREAD"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-dsdgaa"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-dsdgaa"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-k6helw"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-k6helw"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -1639,23 +1639,23 @@ events:
|
||||
variable: "CMAKE_HAVE_LIBC_PTHREAD"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-dsdgaa'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-k6helw'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_4170f
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -o CMakeFiles/cmTC_4170f.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-dsdgaa/src.c
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" CMakeFiles/cmTC_4170f.dir/src.c.obj -o cmTC_4170f && cd ."
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_4170f.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9d646
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -o CMakeFiles/cmTC_9d646.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-k6helw/src.c
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" CMakeFiles/cmTC_9d646.dir/src.c.obj -o cmTC_9d646 && cd ."
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9d646.dir/src.c.obj: note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\\libc.a(libc_stdlib_pico-exit.c.o):(.literal.exit+0x4): warning: _exit is not implemented and will always fail
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\\libc.a(libc_stdlib_pico-exit.c.o): note: the message above does not take linker garbage collection into account
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
@@ -1673,8 +1673,8 @@ events:
|
||||
checks:
|
||||
- "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-qgexyi"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-qgexyi"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-o67jc6"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-o67jc6"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -1684,11 +1684,11 @@ events:
|
||||
variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-qgexyi'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-o67jc6'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_388c5
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -std=c2x -Wformat-signedness -o CMakeFiles/cmTC_388c5.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-qgexyi/src.c
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" CMakeFiles/cmTC_388c5.dir/src.c.obj -o cmTC_388c5 && cd ."
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_b6c08
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -std=c2x -Wformat-signedness -o CMakeFiles/cmTC_b6c08.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/CMakeScratch/TryCompile-o67jc6/src.c
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/ldflags" CMakeFiles/cmTC_b6c08.dir/src.c.obj -o cmTC_b6c08 && cd ."
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
|
||||
exitCode: 0
|
||||
|
||||
@@ -1 +1 @@
|
||||
7ab3723533cea89c7e42adbe97600aeac8f2fb2a
|
||||
70cd36c934b0957da27dd4a94af0b234526baea3
|
||||
|
||||
@@ -1 +1 @@
|
||||
d0ede2bba2237b4eb0c2d0945a6f9c07 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/bootloader.bin
|
||||
8c9b7214093d50104726a49342780482 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/bootloader.bin
|
||||
|
||||
Binary file not shown.
@@ -1,147 +1,145 @@
|
||||
# ninja log v6
|
||||
40 389 8010825318141017 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj 2434ee8be40e99c7
|
||||
30 425 8010825318027974 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 6c80388efb3a92e
|
||||
20 456 8010825317935366 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 82edabf81376c86d
|
||||
92 467 8010825318657421 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 6a442bc7e9166417
|
||||
25 480 8010825317984818 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 5acd613017d4dc85
|
||||
47 496 8010825318196237 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 4f053ad88bd96214
|
||||
61 514 8010825318342087 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj e33f1beb7a5a04cc
|
||||
74 556 8010825318476927 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b5789fa96de37c22
|
||||
54 576 8010825318275862 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 3e4273164ce53882
|
||||
132 597 8010825319055228 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 7cad62cc4cb46040
|
||||
119 614 8010825318923790 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 8cbe4520cfdf0e3a
|
||||
35 628 8010825318078893 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 658bfceb121cfd42
|
||||
67 657 8010825318408017 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj f8483d4f8a4d4cf
|
||||
104 689 8010825318779842 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj 5f4f719b490388c3
|
||||
84 848 8010825318576251 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 5fd1256f12915ecc
|
||||
111 863 8010825318851415 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 865f7f514a80ef98
|
||||
391 879 8010825321648763 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b0e265f4801bab85
|
||||
468 1075 8010825322406505 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj 88e1e7b7982849cc
|
||||
497 1095 8010825322710032 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 65b15a35e51d6759
|
||||
480 1121 8010825322542711 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj a5b8487ff46a7462
|
||||
427 1209 8010825322006142 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 34c7b17a5501d172
|
||||
457 1237 8010825322304089 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 87b461f5c0eb9e16
|
||||
628 1307 8010825324010090 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj d9999c13a7e9876f
|
||||
690 1353 8010825324637467 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 1d9097387fee6da2
|
||||
576 1366 8010825323496177 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 4d9cfde791e09b82
|
||||
557 1381 8010825323297396 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 968820c12e6e3009
|
||||
597 1480 8010825323707784 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 7762da145dc0d995
|
||||
615 1525 8010825323886355 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 34685191c85b1b91
|
||||
848 1558 8010825326216480 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj e0cb18d670ba1b52
|
||||
864 1591 8010825326366405 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj d8cb210bbf9c3572
|
||||
515 1657 8010825322885088 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj ad1653137002cfed
|
||||
879 1837 8010825326525652 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj df2d23e45a0ca651
|
||||
1095 1890 8010825328680651 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b39b773e34c933b0
|
||||
657 1911 8010825324304742 esp-idf/log/liblog.a e92d446a05650353
|
||||
1075 2011 8010825328489304 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 88fa01e312af4f05
|
||||
1354 2143 8010825331271832 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 71856ce0b0dceab2
|
||||
1366 2158 8010825331401261 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj ba541874b0504a06
|
||||
1121 2202 8010825328945388 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj f8ddbc13dd495cf7
|
||||
1237 2213 8010825330106839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj dc21bf9d6cce27ee
|
||||
1480 2228 8010825332536559 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 3cf3cab4473b1b1b
|
||||
1381 2278 8010825331551287 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 31b7f634d2314656
|
||||
1559 2302 8010825333321593 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 8f348ba44eb905b1
|
||||
1307 2323 8010825330801948 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 85725e7051d48907
|
||||
1209 2343 8010825329821647 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b12265c994c8a66c
|
||||
1591 2525 8010825333644641 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj f8929830a7a68122
|
||||
1525 2673 8010825332987921 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b323c0b926ee3578
|
||||
1658 2839 8010825334314127 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 5efb612cf70108a6
|
||||
2229 2878 8010825340027580 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj c3e2fa9ed6ed2f97
|
||||
2202 2970 8010825339760580 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 5b6249fb6de08130
|
||||
2143 2982 8010825339169934 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 1742100e5993bc22
|
||||
1838 3006 8010825336116388 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj cbfd9d40d5f9db1b
|
||||
1890 3060 8010825336643513 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 85cb3cee4c5e17fa
|
||||
2303 3142 8010825340760289 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 7e241b98ceedf5f7
|
||||
2278 3176 8010825340516047 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj ebd548fe0ad9817c
|
||||
1911 3210 8010825336846864 esp-idf/esp_rom/libesp_rom.a e7593de44d2eb46e
|
||||
2323 3231 8010825340968130 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj b52bf6f7721ac657
|
||||
2213 3427 8010825339868014 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 48171b0b04b6a589
|
||||
2673 3442 8010825344466039 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj aeea8d72942d61ad
|
||||
2526 3466 8010825342990005 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj bbc3e9ade5e87570
|
||||
2344 3543 8010825341172586 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 50af87ed7e1e3ee
|
||||
2011 3597 8010825337844612 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 2c45626f50438508
|
||||
2840 3626 8010825346136270 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj 7d16c82fbe1d15b0
|
||||
2970 3639 8010825347439862 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj 447c8f6b0f4454c8
|
||||
2159 3676 8010825339324235 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj defbf46dbfd6bce4
|
||||
2879 3699 8010825346524942 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj 91c703d4efd12015
|
||||
2983 3799 8010825347559688 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj e9b4041f72d4f270
|
||||
3231 3890 8010825350049991 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj 6b536c8f0db74461
|
||||
3142 3940 8010825349158031 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj 8d479b5200855ad5
|
||||
3544 4084 8010825353168206 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj 62679fd8268d8c60
|
||||
3061 4126 8010825348347020 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj 347542a8fd4c5f4
|
||||
3177 4177 8010825349503154 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj 8b3f4c06de874570
|
||||
3442 4189 8010825352156499 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj e193111a121d4067
|
||||
3466 4202 8010825352401826 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj c13c40b2644660b0
|
||||
3006 4245 8010825347797907 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj d40dfa9726cd7b21
|
||||
3639 4378 8010825354129005 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj 3642e08651e1179f
|
||||
3626 4391 8010825353998926 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj 218b56e2b22e854f
|
||||
3210 4410 8010825349835597 esp-idf/esp_common/libesp_common.a 5c296d53dad7655f
|
||||
3677 4444 8010825354503298 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b5e160533fdf137a
|
||||
3428 4457 8010825352015636 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj cb5b5bdddb7a85bc
|
||||
3700 4564 8010825354728069 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 2bfd1c07c5cef6ea
|
||||
3891 4592 8010825356640558 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj 62654930b993fcbb
|
||||
3597 4611 8010825353705127 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj 3e4bfa4413ddd8fc
|
||||
3940 4752 8010825357133665 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj 58b54557d4e12c98
|
||||
3800 4830 8010825355732845 esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj 337f4d66e84f3c56
|
||||
4127 4873 8010825359005718 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj 4f0ed216a73f02b6
|
||||
4378 4998 8010825361516254 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj 74551719206ef757
|
||||
4247 5029 8010825360204583 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj 8aa7052325d9aec9
|
||||
4202 5073 8010825359753014 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj 9eaab2b90df75ae2
|
||||
4177 5096 8010825359504871 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj 67c46e9d9f52f349
|
||||
4444 5135 8010825362176289 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj bf1d99e7de479a5e
|
||||
4084 5150 8010825358576665 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj 6ad5c26d22d9e6c5
|
||||
4391 5176 8010825361646882 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj e2d9277ac7e10941
|
||||
4457 5194 8010825362306182 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f60063df7035768d
|
||||
4565 5369 8010825363382281 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 4f5f14a0d5f34d65
|
||||
4592 5406 8010825363656547 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj e04dee186b1a43d0
|
||||
4410 5418 8010825361841105 esp-idf/esp_hw_support/libesp_hw_support.a 3eee41f06c3b2a3c
|
||||
4874 5440 8010825366475753 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 3d9c0f6175d865d
|
||||
4831 5451 8010825366035562 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 88698c29d88407c8
|
||||
4612 5464 8010825363849288 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 6da2649cd27e8bcd
|
||||
5029 5541 8010825368025038 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj dc7b701fa86b1078
|
||||
4752 5560 8010825365253641 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 6e36983c7cfa2124
|
||||
4998 5606 8010825367723155 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 6c703e0ecffe1aba
|
||||
5073 5649 8010825368466085 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 25a9201a022f052a
|
||||
5097 5654 8010825368701598 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj 47af44d7d0a089f1
|
||||
5135 5688 8010825369087085 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj a5a2ffa3779c32b
|
||||
5176 5715 8010825369498811 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 517ff3ebc5736f9b
|
||||
5452 5724 8010825374780652 project_elf_src_esp32.c 585ff924e5e21d30
|
||||
5452 5724 8010825374780652 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/project_elf_src_esp32.c 585ff924e5e21d30
|
||||
5195 5727 8010825369676333 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj e2fca57ab13e9fe4
|
||||
5151 5729 8010825369244061 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 9ec75b6d52d1092d
|
||||
5407 5830 8010825371803500 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6fa1768abb898478
|
||||
5440 5857 8010825372135544 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj f286434ec1b743e0
|
||||
5369 5877 8010825376330048 ld/bootloader.ld adfd801f52c672f1
|
||||
5369 5877 8010825376330048 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/ld/bootloader.ld adfd801f52c672f1
|
||||
5418 5969 8010825371916211 esp-idf/esp_system/libesp_system.a c8f49980489c2a0d
|
||||
4189 6034 8010825359626715 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a9218cfe793c0095
|
||||
5886 6117 8010825376596749 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 992cd85d92eb2df1
|
||||
5877 6204 8010825376507419 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj ccd7670da1115bdd
|
||||
5969 6303 8010825377425988 esp-idf/efuse/libefuse.a ad45dec6547a20d
|
||||
6304 6681 8010825380766955 esp-idf/bootloader_support/libbootloader_support.a f6aef28c006d00f0
|
||||
6681 6918 8010825384547327 esp-idf/esp_security/libesp_security.a 7cdae8ce3fd4a726
|
||||
6918 7137 8010825386915933 esp-idf/esp_hal_security/libesp_hal_security.a d1dc3c805130a118
|
||||
7137 7372 8010825389095356 esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a f0746abde0c53346
|
||||
7372 7606 8010825391456711 esp-idf/esp_hal_i2s/libesp_hal_i2s.a 1d9979c10620323d
|
||||
7606 7841 8010825393787409 esp-idf/esp_hal_uart/libesp_hal_uart.a ef2a9dcedccec470
|
||||
7842 8061 8010825396147876 esp-idf/esp_hal_wdt/libesp_hal_wdt.a 75b49b567880b7d8
|
||||
8061 8268 8010825398344930 esp-idf/esp_hal_timg/libesp_hal_timg.a d4228b7d3bb9c0dd
|
||||
8268 8482 8010825400415013 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 2836833748619cc0
|
||||
8482 8703 8010825402555854 esp-idf/spi_flash/libspi_flash.a 8b56a5a671c69517
|
||||
8703 8942 8010825404764878 esp-idf/esp_hal_clock/libesp_hal_clock.a e7275f1c569e76f2
|
||||
8942 9198 8010825407147046 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a 103961cda5058008
|
||||
9198 9425 8010825409714621 esp-idf/micro-ecc/libmicro-ecc.a 42df0f4b4c268fd1
|
||||
9425 9672 8010825411983264 esp-idf/esp_hal_gpio/libesp_hal_gpio.a 6106264496f6409a
|
||||
9672 9906 8010825414453345 esp-idf/hal/libhal.a b70cb7edf3b5fe50
|
||||
9906 10144 8010825416795983 esp-idf/soc/libsoc.a f54c230d61dd65a0
|
||||
10144 10358 8010825419176697 esp-idf/xtensa/libxtensa.a 429a4b2358a93fc5
|
||||
10358 10561 8010825421315772 esp-idf/main/libmain.a 405077a36f6e7870
|
||||
10561 10832 8010825423335263 bootloader.elf 811d1288360c6f96
|
||||
10832 11163 8010825429277211 .bin_timestamp 998c685c88fe01f0
|
||||
10832 11163 8010825429277211 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/.bin_timestamp 998c685c88fe01f0
|
||||
11163 11306 8010825429365367 CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
11163 11306 8010825429365367 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
26 157 8010825546811950 CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
26 157 8010825546811950 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
30 182 8010825553366235 CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
30 182 8010825553366235 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
44 324 8028207486380255 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj 2434ee8be40e99c7
|
||||
22 336 8028207486149548 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 82edabf81376c86d
|
||||
33 346 8028207486269899 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 6c80388efb3a92e
|
||||
28 356 8028207486219812 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 5acd613017d4dc85
|
||||
61 404 8028207486548474 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj e33f1beb7a5a04cc
|
||||
50 416 8028207486432935 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 4f053ad88bd96214
|
||||
38 450 8028207486320224 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 658bfceb121cfd42
|
||||
55 463 8028207486482942 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 3e4273164ce53882
|
||||
88 478 8028207486810336 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 6a442bc7e9166417
|
||||
113 512 8028207487069372 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 8cbe4520cfdf0e3a
|
||||
94 536 8028207486870444 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj 5f4f719b490388c3
|
||||
67 554 8028207486603555 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj f8483d4f8a4d4cf
|
||||
75 563 8028207486678807 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b5789fa96de37c22
|
||||
125 579 8028207487184857 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 7cad62cc4cb46040
|
||||
325 697 8028207489185452 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b0e265f4801bab85
|
||||
82 775 8028207486754988 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 5fd1256f12915ecc
|
||||
404 820 8028207489971081 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj a5b8487ff46a7462
|
||||
338 887 8028207489311016 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 34c7b17a5501d172
|
||||
102 907 8028207486949042 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 865f7f514a80ef98
|
||||
356 931 8028207489491525 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj 88e1e7b7982849cc
|
||||
417 957 8028207490102493 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 65b15a35e51d6759
|
||||
346 971 8028207489401201 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 87b461f5c0eb9e16
|
||||
479 1053 8028207490719555 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 4d9cfde791e09b82
|
||||
563 1073 8028207491565160 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj d9999c13a7e9876f
|
||||
579 1097 8028207491728817 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 1d9097387fee6da2
|
||||
464 1143 8028207490568868 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 968820c12e6e3009
|
||||
698 1194 8028207492908614 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj e0cb18d670ba1b52
|
||||
512 1265 8028207491055209 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 7762da145dc0d995
|
||||
554 1382 8028207491471942 esp-idf/log/liblog.a e92d446a05650353
|
||||
775 1413 8028207493686916 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj d8cb210bbf9c3572
|
||||
537 1426 8028207491301029 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 34685191c85b1b91
|
||||
451 1445 8028207490448427 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj ad1653137002cfed
|
||||
907 1491 8028207495005152 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b39b773e34c933b0
|
||||
820 1605 8028207494141724 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj df2d23e45a0ca651
|
||||
957 1618 8028207495504992 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b12265c994c8a66c
|
||||
971 1705 8028207495650786 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj dc21bf9d6cce27ee
|
||||
887 1716 8028207494811240 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 88fa01e312af4f05
|
||||
1098 1759 8028207496903854 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj ba541874b0504a06
|
||||
1074 1773 8028207496672059 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 71856ce0b0dceab2
|
||||
1194 1795 8028207497881493 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 3cf3cab4473b1b1b
|
||||
931 1808 8028207495245614 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj f8ddbc13dd495cf7
|
||||
1053 1915 8028207496472611 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 85725e7051d48907
|
||||
1144 1934 8028207497370207 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 31b7f634d2314656
|
||||
1265 1958 8028207498589568 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b323c0b926ee3578
|
||||
1413 2080 8028207500061885 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 8f348ba44eb905b1
|
||||
1427 2095 8028207500202327 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj f8929830a7a68122
|
||||
1706 2388 8028207502985757 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 1742100e5993bc22
|
||||
1492 2400 8028207500849259 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj cbfd9d40d5f9db1b
|
||||
1382 2415 8028207499754114 esp-idf/esp_rom/libesp_rom.a e7593de44d2eb46e
|
||||
1759 2434 8028207503529641 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 5b6249fb6de08130
|
||||
1795 2451 8028207503881456 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj c3e2fa9ed6ed2f97
|
||||
1935 2480 8028207505281989 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj b52bf6f7721ac657
|
||||
1605 2497 8028207501987087 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 85cb3cee4c5e17fa
|
||||
1916 2528 8028207505099592 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 7e241b98ceedf5f7
|
||||
1446 2560 8028207500391550 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 5efb612cf70108a6
|
||||
1773 2573 8028207503669883 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 48171b0b04b6a589
|
||||
1809 2586 8028207504020347 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj ebd548fe0ad9817c
|
||||
2096 2672 8028207506892067 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj aeea8d72942d61ad
|
||||
1959 2898 8028207505528371 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 50af87ed7e1e3ee
|
||||
2080 2906 8028207506739189 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj bbc3e9ade5e87570
|
||||
1619 2927 8028207502118173 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 2c45626f50438508
|
||||
2435 3034 8028207510279896 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj 447c8f6b0f4454c8
|
||||
2388 3049 8028207509810242 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj 7d16c82fbe1d15b0
|
||||
2451 3106 8028207510450751 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj e9b4041f72d4f270
|
||||
2401 3121 8028207509937896 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj 91c703d4efd12015
|
||||
1716 3132 8028207503091636 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj defbf46dbfd6bce4
|
||||
2529 3146 8028207511218834 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj 8d479b5200855ad5
|
||||
2573 3181 8028207511671494 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj 6b536c8f0db74461
|
||||
2480 3275 8028207510742241 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj d40dfa9726cd7b21
|
||||
2498 3298 8028207510907936 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj 347542a8fd4c5f4
|
||||
2416 3370 8028207510092626 esp-idf/esp_common/libesp_common.a 5c296d53dad7655f
|
||||
2672 3384 8028207512662462 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj e193111a121d4067
|
||||
2906 3437 8028207515000855 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj 62679fd8268d8c60
|
||||
2898 3480 8028207514919500 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj c13c40b2644660b0
|
||||
2587 3491 8028207511804321 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj cb5b5bdddb7a85bc
|
||||
2560 3500 8028207511536084 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj 8b3f4c06de874570
|
||||
3035 3629 8028207516282827 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj 218b56e2b22e854f
|
||||
3050 3654 8028207516432072 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj 3642e08651e1179f
|
||||
3107 3705 8028207517005996 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b5e160533fdf137a
|
||||
3147 3725 8028207517399598 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj 62654930b993fcbb
|
||||
2927 3738 8028207515199927 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj 3e4bfa4413ddd8fc
|
||||
3121 3783 8028207517154546 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 2bfd1c07c5cef6ea
|
||||
3133 3804 8028207517259925 esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj 337f4d66e84f3c56
|
||||
3182 3819 8028207517755893 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj 58b54557d4e12c98
|
||||
3299 3852 8028207518921648 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj 4f0ed216a73f02b6
|
||||
3500 3974 8028207520939287 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj 74551719206ef757
|
||||
3384 4014 8028207519773127 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj 67c46e9d9f52f349
|
||||
3481 4040 8028207520743516 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj 9eaab2b90df75ae2
|
||||
3654 4050 8028207522476660 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj bf1d99e7de479a5e
|
||||
3491 4062 8028207520843506 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj 8aa7052325d9aec9
|
||||
3275 4072 8028207518680912 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj 6ad5c26d22d9e6c5
|
||||
3371 4122 8028207519642563 esp-idf/esp_hw_support/libesp_hw_support.a 3eee41f06c3b2a3c
|
||||
3629 4135 8028207522231836 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj e2d9277ac7e10941
|
||||
3705 4189 8028207522985902 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f60063df7035768d
|
||||
3853 4307 8028207524463662 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 3d9c0f6175d865d
|
||||
3725 4324 8028207523183486 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 4f5f14a0d5f34d65
|
||||
3819 4361 8028207524123639 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 88698c29d88407c8
|
||||
3804 4397 8028207523970853 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 6e36983c7cfa2124
|
||||
4050 4425 8028207526441788 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj 47af44d7d0a089f1
|
||||
3739 4426 8028207523319148 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj e04dee186b1a43d0
|
||||
3975 4503 8028207525681527 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 6c703e0ecffe1aba
|
||||
4014 4507 8028207526078035 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj dc7b701fa86b1078
|
||||
4062 4517 8028207526555178 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj a5a2ffa3779c32b
|
||||
4040 4518 8028207526331041 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 25a9201a022f052a
|
||||
3783 4535 8028207523765628 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 6da2649cd27e8bcd
|
||||
4072 4566 8028207526653472 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 9ec75b6d52d1092d
|
||||
4135 4580 8028207527288908 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 517ff3ebc5736f9b
|
||||
4398 4601 8028207531781836 project_elf_src_esp32.c 585ff924e5e21d30
|
||||
4398 4601 8028207531781836 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/project_elf_src_esp32.c 585ff924e5e21d30
|
||||
4189 4612 8028207527828406 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj e2fca57ab13e9fe4
|
||||
4123 4645 8028207527158378 esp-idf/esp_system/libesp_system.a c8f49980489c2a0d
|
||||
4324 4675 8028207529178025 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6fa1768abb898478
|
||||
4307 4697 8028207532742263 ld/bootloader.ld adfd801f52c672f1
|
||||
4307 4697 8028207532742263 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/ld/bootloader.ld adfd801f52c672f1
|
||||
4361 4714 8028207529543131 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj f286434ec1b743e0
|
||||
3437 4871 8028207520305714 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a9218cfe793c0095
|
||||
4706 4912 8028207532982554 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 992cd85d92eb2df1
|
||||
4697 4979 8028207532900108 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj ccd7670da1115bdd
|
||||
4645 4997 8028207532384342 esp-idf/efuse/libefuse.a ad45dec6547a20d
|
||||
4997 5402 8028207535905434 esp-idf/bootloader_support/libbootloader_support.a f6aef28c006d00f0
|
||||
5403 5648 8028207539958305 esp-idf/esp_security/libesp_security.a 7cdae8ce3fd4a726
|
||||
5648 5831 8028207542422766 esp-idf/esp_hal_security/libesp_hal_security.a d1dc3c805130a118
|
||||
5831 6035 8028207544250320 esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a f0746abde0c53346
|
||||
6036 6225 8028207546291729 esp-idf/esp_hal_i2s/libesp_hal_i2s.a 1d9979c10620323d
|
||||
6226 6432 8028207548191168 esp-idf/esp_hal_uart/libesp_hal_uart.a ef2a9dcedccec470
|
||||
6432 6632 8028207550250148 esp-idf/esp_hal_wdt/libesp_hal_wdt.a 75b49b567880b7d8
|
||||
6632 6824 8028207552252881 esp-idf/esp_hal_timg/libesp_hal_timg.a d4228b7d3bb9c0dd
|
||||
6824 7009 8028207554173271 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 2836833748619cc0
|
||||
7009 7200 8028207556029234 esp-idf/spi_flash/libspi_flash.a 8b56a5a671c69517
|
||||
7200 7382 8028207557929417 esp-idf/esp_hal_clock/libesp_hal_clock.a e7275f1c569e76f2
|
||||
7382 7583 8028207559758962 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a 103961cda5058008
|
||||
7583 7769 8028207561764868 esp-idf/micro-ecc/libmicro-ecc.a 42df0f4b4c268fd1
|
||||
7769 7972 8028207563620483 esp-idf/esp_hal_gpio/libesp_hal_gpio.a 6106264496f6409a
|
||||
7973 8175 8028207565656177 esp-idf/hal/libhal.a b70cb7edf3b5fe50
|
||||
8176 8388 8028207567690707 esp-idf/soc/libsoc.a f54c230d61dd65a0
|
||||
8388 8580 8028207569807118 esp-idf/xtensa/libxtensa.a 429a4b2358a93fc5
|
||||
8580 8768 8028207571730931 esp-idf/main/libmain.a 405077a36f6e7870
|
||||
8768 9009 8028207573613145 bootloader.elf 811d1288360c6f96
|
||||
9010 9344 8028207579291825 .bin_timestamp 998c685c88fe01f0
|
||||
9010 9344 8028207579291825 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/.bin_timestamp 998c685c88fe01f0
|
||||
9344 9483 8028207579375378 CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
9344 9483 8028207579375378 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
28 170 8028207659103338 CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
28 170 8028207659103338 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/bootloader_check_size 1f0fe6b0d267a105
|
||||
|
||||
@@ -80,8 +80,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-j2lbwb"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-j2lbwb"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-bzrc51"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-bzrc51"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -91,10 +91,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-j2lbwb'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-bzrc51'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3b97b
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_628b9
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||
Target: xtensa-esp-elf
|
||||
@@ -102,8 +102,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_3b97b.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOWsamS.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_628b9.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cchHgQ7s.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -120,12 +120,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOWsamS.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cchHgQ7s.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj -o cmTC_3b97b && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj -o cmTC_628b9 && cd ."
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe
|
||||
COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe
|
||||
@@ -136,9 +136,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_3b97b' '-dumpdir' 'cmTC_3b97b.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyA9dD4.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_3b97b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6bUeXY -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_3b97b' '-dumpdir' 'cmTC_3b97b.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_628b9' '-dumpdir' 'cmTC_628b9.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclTlDkM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_628b9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm1qTVo -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_628b9' '-dumpdir' 'cmTC_628b9.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -173,10 +173,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-j2lbwb']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-bzrc51']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3b97b]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_628b9]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||
ignore line: [Target: xtensa-esp-elf]
|
||||
@@ -184,8 +184,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_3b97b.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOWsamS.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_628b9.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cchHgQ7s.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -202,8 +202,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOWsamS.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cchHgQ7s.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -215,8 +215,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_3b97b.dir/CMakeCCompilerABI.c.obj -o cmTC_3b97b && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_628b9.dir/CMakeCCompilerABI.c.obj -o cmTC_628b9 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe]
|
||||
@@ -236,13 +236,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_3b97b' '-dumpdir' 'cmTC_3b97b.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyA9dD4.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_3b97b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6bUeXY -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_628b9' '-dumpdir' 'cmTC_628b9.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclTlDkM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_628b9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm1qTVo -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyA9dD4.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cclTlDkM.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||
@@ -251,7 +251,7 @@ events:
|
||||
arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_3b97b] ==> ignore
|
||||
arg [cmTC_628b9] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o]
|
||||
@@ -263,7 +263,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6bUeXY] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccm1qTVo] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lnosys] ==> lib [nosys]
|
||||
@@ -271,7 +271,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_3b97b' '-dumpdir' 'cmTC_3b97b.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_628b9' '-dumpdir' 'cmTC_628b9.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -303,8 +303,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-4mdkum"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-4mdkum"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kgazrg"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kgazrg"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -315,10 +315,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-4mdkum'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kgazrg'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_1346a
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_89ed3
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||
Target: xtensa-esp-elf
|
||||
@@ -326,8 +326,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_1346a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNvuChp.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_89ed3.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuTa2Sb.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -350,12 +350,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNvuChp.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuTa2Sb.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_1346a && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_89ed3 && cd ."
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe
|
||||
COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe
|
||||
@@ -366,9 +366,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_1346a' '-dumpdir' 'cmTC_1346a.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczCaLWM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_1346a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqjnCWp -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_1346a' '-dumpdir' 'cmTC_1346a.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_89ed3' '-dumpdir' 'cmTC_89ed3.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsWkTRx.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_89ed3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEnaKKV -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_89ed3' '-dumpdir' 'cmTC_89ed3.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -409,10 +409,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-4mdkum']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kgazrg']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_1346a]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_89ed3]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||
ignore line: [Target: xtensa-esp-elf]
|
||||
@@ -420,8 +420,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_1346a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNvuChp.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_89ed3.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuTa2Sb.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -444,8 +444,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccNvuChp.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuTa2Sb.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -457,8 +457,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_1346a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_1346a && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_89ed3.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_89ed3 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe]
|
||||
@@ -478,13 +478,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_1346a' '-dumpdir' 'cmTC_1346a.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczCaLWM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_1346a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqjnCWp -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_89ed3' '-dumpdir' 'cmTC_89ed3.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsWkTRx.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_89ed3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEnaKKV -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczCaLWM.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsWkTRx.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||
@@ -493,7 +493,7 @@ events:
|
||||
arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_1346a] ==> ignore
|
||||
arg [cmTC_89ed3] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o]
|
||||
@@ -505,7 +505,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqjnCWp] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccEnaKKV] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [-lnosys] ==> lib [nosys]
|
||||
@@ -513,7 +513,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_1346a' '-dumpdir' 'cmTC_1346a.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_89ed3' '-dumpdir' 'cmTC_89ed3.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -548,8 +548,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-lczazj"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-lczazj"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wn290r"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wn290r"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -559,10 +559,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-lczazj'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wn290r'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_57533
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_382d7
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -576,8 +576,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_57533.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyYy0aw.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_382d7.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccErkMs5.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -596,12 +596,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyYy0aw.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccErkMs5.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj -o cmTC_57533 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj -o cmTC_382d7 && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -618,9 +618,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_57533' '-dumpdir' 'cmTC_57533.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccWk7kzH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_57533 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckJZk5e -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_57533' '-dumpdir' 'cmTC_57533.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_382d7' '-dumpdir' 'cmTC_382d7.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw3SVZh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_382d7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccKSZ5bq -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_382d7' '-dumpdir' 'cmTC_382d7.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -665,10 +665,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-lczazj']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-wn290r']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_57533]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_382d7]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -682,8 +682,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_57533.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyYy0aw.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_382d7.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccErkMs5.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -702,8 +702,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccyYy0aw.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccErkMs5.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -715,8 +715,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_57533.dir/CMakeCCompilerABI.c.obj -o cmTC_57533 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_382d7.dir/CMakeCCompilerABI.c.obj -o cmTC_382d7 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -742,13 +742,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_57533' '-dumpdir' 'cmTC_57533.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccWk7kzH.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_57533 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckJZk5e -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_382d7' '-dumpdir' 'cmTC_382d7.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw3SVZh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_382d7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccKSZ5bq -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccWk7kzH.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccw3SVZh.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -760,7 +760,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_57533] ==> ignore
|
||||
arg [cmTC_382d7] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
@@ -772,14 +772,14 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckJZk5e] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccKSZ5bq] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [--end-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_57533' '-dumpdir' 'cmTC_57533.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_382d7' '-dumpdir' 'cmTC_382d7.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -814,8 +814,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nj8sor"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nj8sor"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-tpa9sc"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-tpa9sc"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -826,10 +826,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nj8sor'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-tpa9sc'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_e9769
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3e79f
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -843,8 +843,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_e9769.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccawSAz4.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_3e79f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczKi8qx.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -869,12 +869,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccawSAz4.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczKi8qx.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_e9769 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_3e79f && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -891,9 +891,9 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_e9769' '-dumpdir' 'cmTC_e9769.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckVtHOg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_e9769 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccotqfSn -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_e9769' '-dumpdir' 'cmTC_e9769.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_3e79f' '-dumpdir' 'cmTC_3e79f.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccjKLxrF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_3e79f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6Gqgva -lgcc --start-group -lgcc -lc --end-group -lgcc
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_3e79f' '-dumpdir' 'cmTC_3e79f.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -944,10 +944,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nj8sor']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-tpa9sc']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_e9769]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3e79f]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -961,8 +961,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_e9769.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccawSAz4.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_3e79f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczKi8qx.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -987,8 +987,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccawSAz4.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cczKi8qx.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1000,8 +1000,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_e9769.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_e9769 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_3e79f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_3e79f && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1027,13 +1027,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_e9769' '-dumpdir' 'cmTC_e9769.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckVtHOg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_e9769 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccotqfSn -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_3e79f' '-dumpdir' 'cmTC_3e79f.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccjKLxrF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_3e79f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6Gqgva -lgcc --start-group -lgcc -lc --end-group -lgcc]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cckVtHOg.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccjKLxrF.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1045,7 +1045,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_e9769] ==> ignore
|
||||
arg [cmTC_3e79f] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
@@ -1057,14 +1057,14 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccotqfSn] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6Gqgva] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [-lc] ==> lib [c]
|
||||
arg [--end-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_e9769' '-dumpdir' 'cmTC_e9769.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_3e79f' '-dumpdir' 'cmTC_3e79f.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o]
|
||||
@@ -1095,8 +1095,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-blfrio"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-blfrio"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-3smja6"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-3smja6"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags\""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -1106,10 +1106,10 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-blfrio'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-3smja6'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_1159a
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_76424
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1123,8 +1123,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_1159a.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHGBlY0.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_76424.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6I8bDp.s
|
||||
GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -1143,12 +1143,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHGBlY0.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6I8bDp.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj -o cmTC_1159a && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj -o cmTC_76424 && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1165,10 +1165,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_1159a' '-dumpdir' 'cmTC_1159a.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc7p3Pef.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_1159a -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIq6Fhk -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_76424' '-dumpdir' 'cmTC_76424.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciLIsJy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_76424 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqmhLiX -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_1159a' '-dumpdir' 'cmTC_1159a.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_76424' '-dumpdir' 'cmTC_76424.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -1205,10 +1205,10 @@ events:
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-blfrio']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-3smja6']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_1159a]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_76424]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1222,8 +1222,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_1159a.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHGBlY0.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_76424.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6I8bDp.s]
|
||||
ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -1242,8 +1242,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHGBlY0.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6I8bDp.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1255,8 +1255,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_1159a.dir/CMakeCCompilerABI.c.obj -o cmTC_1159a && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_76424.dir/CMakeCCompilerABI.c.obj -o cmTC_76424 && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1282,13 +1282,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_1159a' '-dumpdir' 'cmTC_1159a.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc7p3Pef.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_1159a -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIq6Fhk -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_76424' '-dumpdir' 'cmTC_76424.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciLIsJy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_76424 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqmhLiX -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc7p3Pef.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciLIsJy.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1300,7 +1300,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_1159a] ==> ignore
|
||||
arg [cmTC_76424] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
@@ -1311,7 +1311,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIq6Fhk] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqmhLiX] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -1320,7 +1320,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_1159a' '-dumpdir' 'cmTC_1159a.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_76424' '-dumpdir' 'cmTC_76424.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti]
|
||||
@@ -1350,8 +1350,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-zblker"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-zblker"
|
||||
source: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-di2ngy"
|
||||
binary: "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-di2ngy"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags\""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -1362,10 +1362,10 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-zblker'
|
||||
Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-di2ngy'
|
||||
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_67591
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_42dca
|
||||
[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1379,8 +1379,8 @@ events:
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_67591.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYaRJDy.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_42dca.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgAy4nZ.s
|
||||
GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)
|
||||
compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
|
||||
|
||||
@@ -1405,12 +1405,12 @@ events:
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include
|
||||
End of search list.
|
||||
Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYaRJDy.s
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgAy4nZ.s
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_67591 && cd ."
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.'\x0d
|
||||
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_42dca && cd ."
|
||||
Using built-in specs.
|
||||
Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs
|
||||
rename spec link to picolibc_link
|
||||
@@ -1427,10 +1427,10 @@ events:
|
||||
gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204)
|
||||
COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/
|
||||
LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67591' '-dumpdir' 'cmTC_67591.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsINoAJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_67591 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq0LfYi -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_42dca' '-dumpdir' 'cmTC_42dca.'
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOFmkL9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_42dca -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsbzum9 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d
|
||||
C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67591' '-dumpdir' 'cmTC_67591.'\x0d
|
||||
COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_42dca' '-dumpdir' 'cmTC_42dca.'\x0d
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
@@ -1473,10 +1473,10 @@ events:
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)]
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-zblker']
|
||||
ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-di2ngy']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_67591]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_42dca]
|
||||
ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1490,8 +1490,8 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_67591.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYaRJDy.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_42dca.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgAy4nZ.s]
|
||||
ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)]
|
||||
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
|
||||
ignore line: []
|
||||
@@ -1516,8 +1516,8 @@ events:
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include]
|
||||
ignore line: [End of search list.]
|
||||
ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYaRJDy.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/']
|
||||
ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgAy4nZ.s]
|
||||
ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/]
|
||||
@@ -1529,8 +1529,8 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_67591.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_67591 && cd ."]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.'\x0d]
|
||||
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_42dca.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_42dca && cd ."]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs]
|
||||
ignore line: [rename spec link to picolibc_link]
|
||||
@@ -1556,13 +1556,13 @@ events:
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67591' '-dumpdir' 'cmTC_67591.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsINoAJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_67591 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq0LfYi -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_42dca' '-dumpdir' 'cmTC_42dca.']
|
||||
link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOFmkL9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_42dca -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsbzum9 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d]
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore
|
||||
arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsINoAJ.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccOFmkL9.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -1574,7 +1574,7 @@ events:
|
||||
arg [--dynconfig=xtensa_esp32.so] ==> ignore
|
||||
arg [--gc-sections] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_67591] ==> ignore
|
||||
arg [cmTC_42dca] ==> ignore
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti]
|
||||
@@ -1585,7 +1585,7 @@ events:
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib]
|
||||
arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib]
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccq0LfYi] ==> ignore
|
||||
arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccsbzum9] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--start-group] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
@@ -1594,7 +1594,7 @@ events:
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start]
|
||||
ignore line: [ defaulting to 10000000\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_67591' '-dumpdir' 'cmTC_67591.'\x0d]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_42dca' '-dumpdir' 'cmTC_42dca.'\x0d]
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti]
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1897,7 +1897,7 @@ build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_w
|
||||
build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format
|
||||
|
||||
build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format
|
||||
DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"modbus_tcp_esp32\" -DPROJECT_VER=\"7ab3723-dirty\"
|
||||
DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"modbus_tcp_esp32\" -DPROJECT_VER=\"70cd36c-dirty\"
|
||||
DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d
|
||||
FLAGS = @"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_ModbusTCP=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce
|
||||
INCLUDES = -IC:/Users/e.adame/Documents/ESP32_ModbusTCP/build/config -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
},
|
||||
{
|
||||
"directory": "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build",
|
||||
"command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"modbus_tcp_esp32\\\" -DPROJECT_VER=\\\"7ab3723-dirty\\\" -IC:/Users/e.adame/Documents/ESP32_ModbusTCP/build/config -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_ModbusTCP=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_app_format\\esp_app_desc.c",
|
||||
"command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"modbus_tcp_esp32\\\" -DPROJECT_VER=\\\"70cd36c-dirty\\\" -IC:/Users/e.adame/Documents/ESP32_ModbusTCP/build/config -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_ModbusTCP=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_app_format\\esp_app_desc.c",
|
||||
"file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_app_format\\esp_app_desc.c",
|
||||
"output": "esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj"
|
||||
},
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,9 +0,0 @@
|
||||
Command: cmake -G Ninja -B C:\Users\e.adame\Documents\ESP32_ModbusTCP\build -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -DESP_PLATFORM=1 -DCCACHE_ENABLE=False C:\Users\e.adame\Documents\ESP32_ModbusTCP
|
||||
Configuration Report
|
||||
+---------------------------------+
|
||||
| Parser Version: 1 |
|
||||
| Verbosity: default |
|
||||
| Defaults policy: sdkconfig |
|
||||
| Status: Finished successfully |
|
||||
| |
|
||||
+---------------------------------+
|
||||
@@ -1 +0,0 @@
|
||||
Command: ninja flash
|
||||
@@ -1 +0,0 @@
|
||||
Command: ninja all
|
||||
@@ -1 +0,0 @@
|
||||
Command: ninja all
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -1,91 +0,0 @@
|
||||
Command: ninja flash
|
||||
[1/6] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_ModbusTCP/spiffs C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len"
|
||||
[2/6] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/modbus_tcp_esp32.bin"
|
||||
modbus_tcp_esp32.bin binary size 0xc6a30 bytes. Smallest app partition is 0x100000 bytes. 0x395d0 bytes (22%) free.
|
||||
|
||||
[3/6] Performing build step for 'bootloader'
|
||||
[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/bootloader.bin"
|
||||
|
||||
Bootloader binary size 0x6610 bytes. 0x9f0 bytes (9%) free.
|
||||
|
||||
|
||||
[4/6] No install step for 'bootloader'
|
||||
[5/6] Completed 'bootloader'
|
||||
[5/6] Running utility command for flash
|
||||
esptool --chip esp32 -p COM5 -b 460800 --before=default-reset --after=hard-reset write-flash --flash-mode dio --flash-freq 40m --flash-size 2MB 0x1000 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x110000 spiffs.bin 0x10000 modbus_tcp_esp32.bin
|
||||
esptool v5.2.0
|
||||
Serial port COM5:
|
||||
Connecting....
|
||||
Connected to ESP32 on COM5:
|
||||
Chip type: ESP32-D0WD-V3 (revision v3.1)
|
||||
Features: Wi-Fi, BT, Dual Core + LP Core, 240MHz, Vref calibration in eFuse, Coding Scheme None
|
||||
Crystal frequency: 40MHz
|
||||
MAC: cc:7b:5c:bb:d3:d4
|
||||
|
||||
Uploading stub flasher...
|
||||
Running stub flasher...
|
||||
Stub flasher running.
|
||||
Changing baud rate to 460800...
|
||||
Changed.
|
||||
|
||||
Configuring flash size...
|
||||
SHA digest in image updated.
|
||||
Flash will be erased from 0x00001000 to 0x00007fff...
|
||||
Compressed 26128 bytes to 16572...
|
||||
|
||||
Writing at 0x00001000 [ ] 0.0% 0/16572 bytes...
|
||||
|
||||
Writing at 0x00007514 [============================> ] 98.9% 16384/16572 bytes...
|
||||
|
||||
Writing at 0x00007610 [==============================] 100.0% 16572/16572 bytes...
|
||||
Wrote 26128 bytes (16572 compressed) at 0x00001000 in 0.9 seconds (236.4 kbit/s).
|
||||
Verifying written data...
|
||||
Hash of data verified.
|
||||
Flash will be erased from 0x00008000 to 0x00008fff...
|
||||
Compressed 3072 bytes to 118...
|
||||
|
||||
Writing at 0x00008000 [ ] 0.0% 0/118 bytes...
|
||||
|
||||
Writing at 0x00008c00 [==============================] 100.0% 118/118 bytes...
|
||||
Wrote 3072 bytes (118 compressed) at 0x00008000 in 0.1 seconds (327.3 kbit/s).
|
||||
Verifying written data...
|
||||
Hash of data verified.
|
||||
Flash will be erased from 0x00110000 to 0x001fffff...
|
||||
Compressed 983040 bytes to 7161...
|
||||
|
||||
Writing at 0x00110000 [ ] 0.0% 0/7161 bytes...
|
||||
|
||||
Writing at 0x00200000 [==============================] 100.0% 7161/7161 bytes...
|
||||
Wrote 983040 bytes (7161 compressed) at 0x00110000 in 5.7 seconds (1378.8 kbit/s).
|
||||
Verifying written data...
|
||||
Hash of data verified.
|
||||
Flash will be erased from 0x00010000 to 0x000d6fff...
|
||||
Compressed 813616 bytes to 532879...
|
||||
|
||||
Writing at 0x00010000 [ ] 0.0% 0/532879 bytes...
|
||||
|
||||
Writing at 0x0001c766 [ ] 3.1% 16384/532879 bytes...
|
||||
|
||||
Writing at 0x00024da9 [> ] 6.1% 32768/532879 bytes...
|
||||
|
||||
Writing at 0x0002f109 [=> ] 9.2% 49152/532879 bytes...
|
||||
|
||||
Writing at 0x00035253 [==> ] 12.3% 65536/532879 bytes...
|
||||
|
||||
Writing at 0x0003b042 [===> ] 15.4% 81920/532879 bytes...
|
||||
|
||||
Writing at 0x00040f92 [====> ] 18.4% 98304/532879 bytes...
|
||||
|
||||
Writing at 0x00046a39 [=====> ] 21.5% 114688/532879 bytes...
|
||||
|
||||
Writing at 0x0004c1ef [======> ] 24.6% 131072/532879 bytes...
|
||||
|
||||
Writing at 0x00051e99 [=======> ] 27.7% 147456/532879 bytes...
|
||||
|
||||
Writing at 0x00057ae9 [========> ] 30.7% 163840/532879 bytes...
|
||||
|
||||
Writing at 0x0005d6c1 [=========> ] 33.8% 180224/532879 bytes...
|
||||
|
||||
Writing at 0x00062e19 [==========> ] 36.9% 196608/532879 bytes...
|
||||
|
||||
Writing at 0x00068661 [==========> ] 40.0% 212992/532879 bytes...
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +0,0 @@
|
||||
Command: ninja all
|
||||
[1/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/modbus_tcp_esp32.bin"
|
||||
modbus_tcp_esp32.bin binary size 0xc6a30 bytes. Smallest app partition is 0x100000 bytes. 0x395d0 bytes (22%) free.
|
||||
|
||||
[2/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_ModbusTCP/spiffs C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len"
|
||||
[3/5] Performing build step for 'bootloader'
|
||||
[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_ModbusTCP\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/bootloader/bootloader.bin"
|
||||
|
||||
Bootloader binary size 0x6610 bytes. 0x9f0 bytes (9%) free.
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": "1.3",
|
||||
"project_name": "modbus_tcp_esp32",
|
||||
"project_version": "7ab3723-dirty",
|
||||
"project_version": "70cd36c-dirty",
|
||||
"project_path": "C:/Users/e.adame/Documents/ESP32_ModbusTCP",
|
||||
"idf_path": "C:/esp/v6.0/esp-idf",
|
||||
"build_dir": "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build",
|
||||
|
||||
BIN
build/spiffs.bin
BIN
build/spiffs.bin
Binary file not shown.
@@ -240,22 +240,6 @@ static uint8_t data_type_reg_span(modbus_data_type_t data_type)
|
||||
}
|
||||
}
|
||||
|
||||
static bool db_has_duplicate_name(const modbus_db_t *db, const char *name)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
if (db == NULL || name == NULL)
|
||||
return false;
|
||||
|
||||
for (i = 0; i < db->count; i++)
|
||||
{
|
||||
if (strcmp(db->points[i].name, name) == 0)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool db_has_duplicate_type_offset(const modbus_db_t *db,
|
||||
modbus_point_type_t type,
|
||||
uint16_t offset)
|
||||
@@ -428,17 +412,10 @@ static bool append_helper_points(modbus_db_t *db, const modbus_point_t *base_pt)
|
||||
helper.bit_value = 0U;
|
||||
helper.reg_value = 0U;
|
||||
|
||||
snprintf(helper.name,
|
||||
sizeof(helper.name),
|
||||
"%.25s__w%u",
|
||||
base_pt->name,
|
||||
(unsigned)(i + 1U));
|
||||
|
||||
if (db->count >= MODBUS_MAX_POINTS)
|
||||
return false;
|
||||
|
||||
if (db_has_duplicate_name(db, helper.name))
|
||||
return false;
|
||||
|
||||
if (db_has_duplicate_type_offset(db, helper.type, helper.offset))
|
||||
return false;
|
||||
@@ -498,12 +475,6 @@ static bool parse_csv_line(const char *line_in, modbus_point_t *pt)
|
||||
if (!normalize_address(pt->type, pt->raw_address, &pt->offset))
|
||||
return false;
|
||||
|
||||
if (fields[2][0] == '\0')
|
||||
return false;
|
||||
|
||||
strncpy(pt->name, fields[2], sizeof(pt->name) - 1U);
|
||||
pt->name[sizeof(pt->name) - 1U] = '\0';
|
||||
|
||||
pt->data_type = parse_data_type(fields[3]);
|
||||
if (pt->data_type == MB_DATA_INVALID)
|
||||
return false;
|
||||
@@ -624,9 +595,6 @@ static bool parse_csv_line(const char *line_in, modbus_point_t *pt)
|
||||
}
|
||||
}
|
||||
|
||||
strncpy(pt->notes, fields[7], sizeof(pt->notes) - 1U);
|
||||
pt->notes[sizeof(pt->notes) - 1U] = '\0';
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -745,22 +713,13 @@ bool modbus_points_load(modbus_db_t *db, const char *filename)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (db_has_duplicate_name(db, pt.name))
|
||||
{
|
||||
printf("CSV ERROR line %u: duplicate name '%s'\n",
|
||||
(unsigned)line_num,
|
||||
pt.name);
|
||||
fclose(fp);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (db_has_duplicate_type_offset(db, pt.type, pt.offset))
|
||||
{
|
||||
printf("CSV ERROR line %u: duplicate Modbus address for name '%s' raw=%lu offset=%u\n",
|
||||
printf("CSV ERROR line %u: duplicate Modbus address raw=%lu offset=%u\n",
|
||||
(unsigned)line_num,
|
||||
pt.name,
|
||||
(unsigned long)pt.raw_address,
|
||||
(unsigned)pt.offset);
|
||||
|
||||
fclose(fp);
|
||||
return false;
|
||||
}
|
||||
@@ -771,9 +730,8 @@ bool modbus_points_load(modbus_db_t *db, const char *filename)
|
||||
pt.pics_offset,
|
||||
pt.pics_reg_span))
|
||||
{
|
||||
printf("CSV ERROR line %u: overlapping PICS range for name '%s' pics_raw=%lu pics_offset=%u span=%u\n",
|
||||
printf("CSV ERROR line %u: overlapping PICS range pics_raw=%lu pics_offset=%u span=%u\n",
|
||||
(unsigned)line_num,
|
||||
pt.name,
|
||||
(unsigned long)pt.pics_raw_address,
|
||||
(unsigned)pt.pics_offset,
|
||||
(unsigned)pt.pics_reg_span);
|
||||
@@ -785,9 +743,8 @@ bool modbus_points_load(modbus_db_t *db, const char *filename)
|
||||
|
||||
if (!append_helper_points(db, &pt))
|
||||
{
|
||||
printf("CSV ERROR line %u: failed to append helper points for '%s'\n",
|
||||
(unsigned)line_num,
|
||||
pt.name);
|
||||
printf("CSV ERROR line %u: failed to append helper points\n",
|
||||
(unsigned)line_num);
|
||||
fclose(fp);
|
||||
return false;
|
||||
}
|
||||
@@ -797,21 +754,6 @@ bool modbus_points_load(modbus_db_t *db, const char *filename)
|
||||
return true;
|
||||
}
|
||||
|
||||
const modbus_point_t *modbus_points_find_by_name(const modbus_db_t *db, const char *name)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
if (db == NULL || name == NULL)
|
||||
return NULL;
|
||||
|
||||
for (i = 0; i < db->count; i++)
|
||||
{
|
||||
if (strcmp(db->points[i].name, name) == 0)
|
||||
return &db->points[i];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const modbus_point_t *modbus_points_find_by_type_offset(const modbus_db_t *db,
|
||||
modbus_point_type_t type,
|
||||
|
||||
@@ -7,9 +7,22 @@
|
||||
|
||||
#include "modbus_memory.h"
|
||||
|
||||
#define MODBUS_MAX_POINTS 130
|
||||
#define MODBUS_MAX_NAME_LEN 32
|
||||
#define MODBUS_MAX_NOTES_LEN 64
|
||||
#define MODBUS_MAX_POINTS 80 /* Max point entries per device, including helper registers */
|
||||
/*
|
||||
Modbus Data Type
|
||||
- bool = 1 register
|
||||
- uint16 = 1 register
|
||||
- uint32 = 2 registers
|
||||
- float = 2 registers
|
||||
|
||||
Example: If max is set to 2, you can have this combination:
|
||||
- 2 bool Data_Type
|
||||
- 2 uint16 Data_Type
|
||||
- 1 uint32 Data_Type
|
||||
- 1 float Data_Type
|
||||
|
||||
*/
|
||||
|
||||
#define MODBUS_MAX_CSV_LINE_LEN 256
|
||||
|
||||
typedef enum
|
||||
@@ -24,20 +37,20 @@ typedef enum
|
||||
typedef enum
|
||||
{
|
||||
MB_DATA_BOOL = 0,
|
||||
MB_DATA_UINT16,
|
||||
MB_DATA_UINT32,
|
||||
MB_DATA_FLOAT,
|
||||
MB_DATA_DOUBLE,
|
||||
MB_DATA_UINT16, /* 1 Register*/
|
||||
MB_DATA_UINT32, /* 2 Registers */
|
||||
MB_DATA_FLOAT, /* 2 Registers */
|
||||
MB_DATA_DOUBLE, /* 4 Registers */
|
||||
MB_DATA_INVALID
|
||||
} modbus_data_type_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PICS_DATA_NONE = 0,
|
||||
PICS_DATA_BOOLEAN,
|
||||
PICS_DATA_INTEGER, /* PICS Integer = 32-bit */
|
||||
PICS_DATA_FLOAT, /* PICS Float = 64-bit double */
|
||||
PICS_DATA_STRING,
|
||||
PICS_DATA_BOOLEAN, /* PICS Boolean = 1 bit ; uses 1 Register */
|
||||
PICS_DATA_INTEGER, /* PICS Integer = 32-bit ; uses 2 Registers*/
|
||||
PICS_DATA_FLOAT, /* PICS Float = 64-bit double ; uses 4 registers */
|
||||
PICS_DATA_STRING, /* This is ignored, just brought in incase users usees it, ESP32 will ignore it*/
|
||||
PICS_DATA_INVALID
|
||||
} pics_data_type_t;
|
||||
|
||||
@@ -47,7 +60,6 @@ typedef struct modbus_point
|
||||
uint32_t raw_address;
|
||||
uint16_t offset;
|
||||
|
||||
char name[MODBUS_MAX_NAME_LEN];
|
||||
modbus_data_type_t data_type;
|
||||
|
||||
uint8_t reg_span;
|
||||
@@ -67,7 +79,6 @@ typedef struct modbus_point
|
||||
|
||||
uint16_t pics_words[4];
|
||||
|
||||
char notes[MODBUS_MAX_NOTES_LEN];
|
||||
|
||||
uint8_t bit_value;
|
||||
uint16_t reg_value;
|
||||
@@ -87,9 +98,6 @@ void modbus_points_reset(modbus_db_t *db);
|
||||
bool modbus_points_load(modbus_db_t *db, const char *filename);
|
||||
|
||||
/* Lookup helpers */
|
||||
const modbus_point_t *modbus_points_find_by_name(const modbus_db_t *db,
|
||||
const char *name);
|
||||
|
||||
const modbus_point_t *modbus_points_find_by_type_offset(const modbus_db_t *db,
|
||||
modbus_point_type_t type,
|
||||
uint16_t offset);
|
||||
|
||||
@@ -1,124 +0,0 @@
|
||||
type,address,name,data_type,control_address,pics_address,pics_data_type,notes
|
||||
Discrete_Input,100051,Water_Detected_Alarm,bool,000051,,,Unit flooding detector alarm
|
||||
Coil,000051,_Water_Detected_Alarm,bool,,,,Unit flooding detector alarm
|
||||
Discrete_Input,100118,High_Temperature_Supply_Air,bool,000118,,,High supply air temperature alarm
|
||||
Coil,000118,_High_Temperature_Supply_Air,bool,,,,High supply air temperature alarm
|
||||
Discrete_Input,100122,Low_Temperature_Supply_Air,bool,000122,,,Low supply air temperature alarm
|
||||
Coil,000122,_Low_Temperature_Supply_Air,bool,,,,Low supply air temperature alarm
|
||||
Discrete_Input,100131,Fan_Alarm1,bool,000131,,,Fan Alarm 1
|
||||
Coil,000131,_Fan_Alarm1,bool,,,,Fan Alarm 1
|
||||
Discrete_Input,100132,Fan_Alarm2,bool,000132,,,Fan Alarm 2
|
||||
Coil,000132,_Fan_Alarm2,bool,,,,Fan Alarm 2
|
||||
Discrete_Input,100133,Fan_Alarm3,bool,000133,,,Fan Alarm 3
|
||||
Coil,000133,_Fan_Alarm3,bool,,,,Fan Alarm 3
|
||||
Discrete_Input,100134,Fan_Alarm4,bool,000134,,,Fan Alarm 4
|
||||
Coil,000134,_Fan_Alarm4,bool,,,,Fan Alarm 4
|
||||
Discrete_Input,100135,Fan_Alarm5,bool,000135,,,Fan Alarm 5
|
||||
Coil,000135,_Fan_Alarm5,bool,,,,Fan Alarm 5
|
||||
Discrete_Input,100136,Fan_Alarm6,bool,000136,,,Fan Alarm 6
|
||||
Coil,000136,_Fan_Alarm6,bool,,,,Fan Alarm 6
|
||||
Discrete_Input,100146,Supply_Sensor_Failure_Alarm,bool,000146,,,Supply air temperature sensor fault
|
||||
Coil,000146,_Supply_Sensor_Failure_Alarm,bool,,,,Supply air temperature sensor fault
|
||||
Discrete_Input,101096,Filter_Alarm,bool,001096,,,Dirty filter alarm
|
||||
Coil,001096,_Filter_Alarm,bool,,,,Dirty filter alarm
|
||||
Discrete_Input,101099,Low_Temperature_Return_Air,bool,001099,,,Low return air temperature alarm
|
||||
Coil,001099,_Low_Temperature_Return_Air,bool,,,,Low return air temperature alarm
|
||||
Discrete_Input,101245,Return_Sensor_Failure_Alarm,bool,001245,,,Return air temperature sensor fault
|
||||
Coil,001245,_Return_Sensor_Failure_Alarm,bool,,,,Return air temperature sensor fault
|
||||
Discrete_Input,101246,Humidity_Sensor_Failure_Alarm,bool,001246,,,Return air humidity sensor fault
|
||||
Coil,001246,_Humidity_Sensor_Failure_Alarm,bool,,,,Return air humidity sensor fault
|
||||
Discrete_Input,101250,Filter_Diff_Press_Sensor_Failure,bool,001250,,,Filter differential pressure sensor fault
|
||||
Coil,001250,_Filter_Diff_Press_Sensor_Failure,bool,,,,Filter differential pressure sensor fault
|
||||
Discrete_Input,101307,High_Humidity_Return_Air,bool,001307,,,High return air humidity alarm
|
||||
Coil,001307,_High_Humidity_Return_Air,bool,,,,High return air humidity alarm
|
||||
Discrete_Input,101308,Low_Humidity_Return_Air,bool,001308,,,Low return air humidity alarm
|
||||
Coil,001308,_Low_Humidity_Return_Air,bool,,,,Low return air humidity alarm
|
||||
Discrete_Input,101342,Common_Alarm,bool,001342,,,Common alarm status
|
||||
Coil,001342,_Common_Alarm,bool,,,,Common alarm status
|
||||
Discrete_Input,101360,Fan_Alarm7,bool,001360,,,Fan Alarm 7
|
||||
Coil,001360,_Fan_Alarm7,bool,,,,Fan Alarm 7
|
||||
Discrete_Input,101361,Fan_Alarm8,bool,001361,,,Fan Alarm 8
|
||||
Coil,001361,_Fan_Alarm8,bool,,,,Fan Alarm 8
|
||||
Discrete_Input,101362,Fan_Alarm9,bool,001362,,,Fan Alarm 9
|
||||
Coil,001362,_Fan_Alarm9,bool,,,,Fan Alarm 9
|
||||
Discrete_Input,101367,High_Temperature_Return_Air,bool,001367,,,High return air temperature alarm
|
||||
Coil,001367,_High_Temperature_Return_Air,bool,,,,High return air temperature alarm
|
||||
Discrete_Input,101368,Smoke_Detected,bool,001368,,,Smoke alarm status
|
||||
Coil,001368,_Smoke_Detected,bool,,,,Smoke alarm status
|
||||
Discrete_Input,101369,Fire_SD_Alarm,bool,001369,,,Fire alarm status
|
||||
Coil,001369,_Fire_SD_Alarm,bool,,,,Fire alarm status
|
||||
Discrete_Input,101370,Cond_Pump_Fail,bool,001370,,,Condensate pump alarm status
|
||||
Coil,001370,_Cond_Pump_Fail,bool,,,,Condensate pump alarm status
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
Input_Register,300053,Fan1_Speed,uint16,430053,,,Speed-EC FAN#1
|
||||
Holding_Register,430053,_Fan1_Speed,uint16,,410001,Integer,Speed-EC FAN#1
|
||||
Input_Register,300070,Return_Humidity,float,430070,,,Return air humidity reading
|
||||
Holding_Register,430070,_Return_Humidity,float,,410005,Float,Return air humidity reading
|
||||
Input_Register,300099,Air_Supply_Temp,uint32,430099,,,Supply air temperature reading
|
||||
Holding_Register,430099,_Air_Supply_Temp,uint32,,410009,Float,Supply air temperature reading
|
||||
Input_Register,300101,Air_Return_Temp,float,430101,,,Return air temperature
|
||||
Holding_Register,430101,_Air_Return_Temp,float,,410013,Float,Return air temperature
|
||||
Input_Register,300106,Supply_Filter_Diff_Press,float,430106,,,
|
||||
Holding_Register,430106,_Supply_Filter_Diff_Press,float,,410017,Float,
|
||||
Input_Register,300228,Fan2_Speed,uint16,430228,,,Speed-EC FAN#2
|
||||
Holding_Register,430228,_Fan2_Speed,uint16,,410021,Integer,Speed-EC FAN#2
|
||||
Input_Register,300229,Fan3_Speed,uint16,430229,,,Speed-EC FAN#3
|
||||
Holding_Register,430229,_Fan3_Speed,uint16,,410025,Integer,Speed-EC FAN#3
|
||||
Input_Register,300230,Fan4_Speed,uint16,430243,,,Speed-EC FAN#4
|
||||
Holding_Register,430243,_Fan4_Speed,uint16,,410029,Integer,Speed-EC FAN#4
|
||||
Input_Register,300231,Fan5_Speed,uint16,430231,,,Speed-EC FAN#5
|
||||
Holding_Register,430231,_Fan5_Speed,uint16,,410033,Integer,Speed-EC FAN#5
|
||||
Input_Register,300232,Fan6_Speed,uint16,430232,,,Speed-EC FAN#6
|
||||
Holding_Register,430232,_Fan6_Speed,uint16,,410037,Integer,Speed-EC FAN#6
|
||||
Input_Register,300233,Fan2_Hrs,uint16,430233,,,Operating hours-EC FAN#2
|
||||
Holding_Register,430233,_Fan2_Hrs,uint16,,410041,Integer,Operating hours-EC FAN#2
|
||||
Input_Register,300235,Fan4_Hrs,uint16,430235,,,Operating hours-EC FAN#4
|
||||
Holding_Register,430235,_Fan4_Hrs,uint16,,410045,Integer,Operating hours-EC FAN#4
|
||||
Input_Register,300236,Fan5_Hrs,uint16,430236,,,Operating hours-EC FAN#5
|
||||
Holding_Register,430236,_Fan5_Hrs,uint16,,410049,Integer,Operating hours-EC FAN#5
|
||||
Input_Register,300244,Fan3_Hrs,uint16,430244,,,Operating hours-EC FAN#3
|
||||
Holding_Register,430244,_Fan3_Hrs,uint16,,410053,Integer,Operating hours-EC FAN#3
|
||||
Input_Register,300245,Fan6_Hrs,uint16,430245,,,Operating hours-EC FAN#6
|
||||
Holding_Register,430245,_Fan6_Hrs,uint16,,410057,Integer,Operating hours-EC FAN#6
|
||||
Input_Register,300274,Fan1_Hrs,uint16,430274,,,Operating hours-EC FAN#1
|
||||
Holding_Register,430274,_Fan1_Hrs,uint16,,410061,Integer,Operating hours-EC FAN#1
|
||||
Input_Register,300486,Fan7_Hrs,uint16,430486,,,Operating hours-EC FAN#7
|
||||
Holding_Register,430486,_Fan7_Hrs,uint16,,410065,Integer,Operating hours-EC FAN#7
|
||||
Input_Register,300487,Fan8_Hrs,uint16,430487,,,Operating hours-EC FAN#8
|
||||
Holding_Register,430487,_Fan8_Hrs,uint16,,410069,Integer,Operating hours-EC FAN#8
|
||||
Input_Register,300488,Fan9_Hrs,uint16,430488,,,Operating hours-EC FAN#9
|
||||
Holding_Register,430488,_Fan9_Hrs,uint16,,410073,Integer,Operating hours-EC FAN#9
|
||||
Input_Register,300496,Cooling_Valve_Output,float,430496,,,Chilled water valve feedback signal
|
||||
Holding_Register,430496,_Cooling_Valve_Output,float,,410077,Float,Chilled water valve feedback signal
|
||||
Input_Register,300678,Fan7_Speed,uint16,430678,,,Speed-EC FAN#7
|
||||
Holding_Register,430678,_Fan7_Speed,uint16,,410081,Integer,Speed-EC FAN#7
|
||||
Input_Register,300679,Fan8_Speed,uint16,430679,,,Speed-EC FAN#8
|
||||
Holding_Register,430679,_Fan8_Speed,uint16,,410085,Integer,Speed-EC FAN#8
|
||||
Input_Register,300680,Fan9_Speed,uint16,430680,,,Speed-EC FAN#9
|
||||
Holding_Register,430680,_Fan9_Speed,uint16,,410089,Integer,Speed-EC FAN#9
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
Holding_Register,400005,Fan_Speed_Max_SP,float,,410097,Float,Setting the EC fan maximum speed
|
||||
,,,,,,,
|
||||
Holding_Register,40029,Fan_Speed,float,,410101,Float,Fan Speed Feedback
|
||||
,,,,,,,
|
||||
Holding_Register,400111,Air_Return_Temp_Alm_Hi_SP,float,,410105,Float,High return air temperature alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400114,Air_Return_Temp_Alm_Lo_SP,float,,410109,Float,Low return air temperature alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400118,Air_Supply_Temp_Alm_Hi_SP,float,,410113,Float,High supply air temperature alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400122,Air_Supply_Temp_Alm_Lo_SP,float,,410117,Float,Low supply air temperature alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400681,Air_Return_Temp_SP,float,,410121,Float,Return air temperature setpoint
|
||||
,,,,,,,
|
||||
Holding_Register,400685,Return_Humidity_Alm_Hi_SP,float,,410125,Float,High return air humidity alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400689,Return_Humidity_Alm_Lo_SP,float,,410129,Float,Low return air humidity alarm limit
|
||||
,,,,,,,
|
||||
Holding_Register,400693,Space_Temp_SP,float,,410133,Float,Setting the room temperature
|
||||
,,,,,,,
|
||||
Holding_Register,400695,Fan_Speed_Min_SP,float,,410137,Float,Setting the EC fan minimum speed
|
||||
,,,,,,,
|
||||
Coil,000301,BMS_StartStop,bool,,,,
|
||||
|
@@ -1,36 +0,0 @@
|
||||
type,address,name,data_type,control_address,pics_address,pics_data_type,notes
|
||||
,,,,,,,
|
||||
Input_Register,30215,Amps_A,float,40215,,,
|
||||
Holding_Register,40215,Amps_A_Ovr,float,,410001,Integer,
|
||||
Input_Register,30217,Amps_B,float,40217,,,
|
||||
Holding_Register,40217,Amps_B_Ovr,float,,410003,Integer,
|
||||
Input_Register,30219,Amps_C,float,40219,,,
|
||||
Holding_Register,40219,Amps_C_Ovr,float,,410005,Integer,
|
||||
Input_Register,30221,Amps_N,float,40221,,,
|
||||
Holding_Register,40221,Amps_N_Ovr,float,,410007,Integer,
|
||||
Input_Register,30223,Amps_G,float,40223,,,
|
||||
Holding_Register,40223,Amps_G_Ovr,float,,410009,Integer,
|
||||
Input_Register,30207,Unit_Status,uint16,40207,,,
|
||||
Holding_Register,40207,Unit_Status_Ovr,uint16,,410011,Integer,4096 = CB_Position & 512 = Tripped
|
||||
Input_Register,30255,kVA,float,40255,,,
|
||||
Holding_Register,40255,kVA_Ovr,float,,410013,Integer,
|
||||
Input_Register,30251,kW,float,40251,,,
|
||||
Holding_Register,40251,kW_Ovr,float,,410015,Integer,
|
||||
Input_Register,30265,kWh_Reg1,float,40265,,,
|
||||
Holding_Register,40265,kWh_Reg1_Ovr,float,,410017,Integer,
|
||||
Input_Register,30267,kWh_Reg2,float,40267,,,
|
||||
Holding_Register,40267,kWh_Reg2_Ovr,float,,410019,Integer,
|
||||
Input_Register,30249,PF,float,40249,,,
|
||||
Holding_Register,40249,PF_Ovr,float,,410021,Integer,
|
||||
Input_Register,30237,Volts_AB,float,40237,,,
|
||||
Holding_Register,40237,Volts_AB_Ovr,float,,410023,Integer,
|
||||
Input_Register,30231,Volts_AN,float,40231,,,
|
||||
Holding_Register,40231,Volts_AN_Ovr,float,,410025,Integer,
|
||||
Input_Register,30239,Volts_BC,float,40239,,,
|
||||
Holding_Register,40239,Volts_BC_Ovr,float,,410027,Integer,
|
||||
Input_Register,30233,Volts_BN,float,40233,,,
|
||||
Holding_Register,40233,Volts_BN_Ovr,float,,410029,Integer,
|
||||
Input_Register,30241,Volts_CA,float,40241,,,
|
||||
Holding_Register,40241,Volts_CA_Ovr,float,,410031,Integer,
|
||||
Input_Register,30235,Volts_CN,float,40235,,,
|
||||
Holding_Register,40235,Volts_CN_Ovr,float,,410033,Integer,
|
||||
|
129
spiffs/UPS.csv
129
spiffs/UPS.csv
@@ -1,129 +0,0 @@
|
||||
type,address,name,data_type,control_address,pics_address,pics_data_type,notes
|
||||
,,,,,,,
|
||||
Discrete_Input,10263,Batt_Low,bool,00263,,,Battery Low Alarm
|
||||
Coil,00263,Batt_Low_Flt,bool,,,,Trigger Battery Low Alarm
|
||||
Discrete_Input,10020,Bypass_Not_Available,bool,00020,,,Bypass_Not_Available
|
||||
Coil,00020,Bypass_Not_Available_Flt,bool,,,,Bypass_Not_Available_Flt
|
||||
Discrete_Input,10244,EPO_Shutdown,bool,00244,,,EPO_Shutdown
|
||||
Coil,00244,EPO_Shutdown_Flt,bool,,,,EPO_Shutdown_Flt
|
||||
Discrete_Input,10247,Fan_Fail,bool,00247,,,Fan_Fail
|
||||
Coil,00247,Fan_Fail_Flt,bool,,,,Fan_Fail_Flt
|
||||
Discrete_Input,10245,Fuse_Fail,bool,00245,,,Fuse_Fail
|
||||
Coil,00245,Fuse_Fail_Flt,bool,,,,Fan_Fail_Flt
|
||||
Discrete_Input,10239,Internal_Comm_Fail,bool,00239,,,Internal_Comm_Fail
|
||||
Coil,00239,Internal_Comm_Fail_Flt,bool,,,,Internal_Comm_Fail_Flt
|
||||
Discrete_Input,10254,On_Bypass,bool,00254,,,On_Bypass
|
||||
Coil,00254,On_Bypass_Flt,bool,,,,On_Bypass_Flt
|
||||
Discrete_Input,10249,Output_Off,bool,00249,,,Output_Off
|
||||
Coil,00249,Output_Off_Flt,bool,,,,Output_Off_Flt
|
||||
Discrete_Input,10011,Overload,bool,00011,,,Overload
|
||||
Coil,00011,Overload_Flt,bool,,,,Overload_Flt
|
||||
,,,,,,,
|
||||
Input_Register,30183,Battery_Status_Raw,uint16,40183,,,Battery Status
|
||||
Holding_Register,40183,Batter_Status_Raw_Ovr,uint16,,410001,Integer,Battery Status Ovr
|
||||
Input_Register,30180,Battery_Time_Remain,uint16,40180,,,Battery Remaining Time
|
||||
Holding_Register,40180,Battery_Time_Remain_Ovr,uint16,,410003,Integer,Battery Remaining Time Ovr
|
||||
Input_Register,30029,Bypass_FREQ,uint16,40029,,,Bypass_FREQ
|
||||
Holding_Register,40029,Bypass_FREQ_Ovr,uint16,,410005,Integer,Bypass_FREQ_Ovr
|
||||
Input_Register,30030,Bypass_kW_A,uint16,40030,,,Bypass_kW_A
|
||||
Holding_Register,40030,Bypass_kW_A_Ovr,uint16,,410007,Integer,Bypass_kW_A_Ovr
|
||||
Input_Register,30031,Bypass_kW_B,uint16,40031,,,Bypass_kW_B
|
||||
Holding_Register,40031,Bypass_kW_B_Ovr,uint16,,410009,Integer,Bypass_kW_B_Ovr
|
||||
Input_Register,30032,Bypass_kW_C,uint16,40032,,,Bypass_kW_C
|
||||
Holding_Register,40032,Bypass_kW_C_Ovr,uint16,,410011,Integer,Bypass_kW_C_Ovr
|
||||
Input_Register,30023,Bypass_Volts_AB,uint16,40023,,,Bypass_Volts_AB
|
||||
Holding_Register,40023,Bypass_Volts_AB_Ovr,uint16,,410013,Integer,Bypass_Volts_AB_Ovr
|
||||
Input_Register,30026,Bypass_Volts_AN,uint16,40026,,,Bypass_Volts_AN
|
||||
Holding_Register,40026,Bypass_Volts_AN_Ovr,uint16,,410015,Integer,Bypass_Volts_AN_Ovr
|
||||
Input_Register,30024,Bypass_Volts_BC,uint16,40024,,,Bypass_Volts_BC
|
||||
Holding_Register,40024,Bypass_Volts_BC_Ovr,uint16,,410017,Integer,Bypass_Volts_BC_Ovr
|
||||
Input_Register,30027,Bypass_Volts_BN,uint16,40027,,,Bypass_Volts_BN
|
||||
Holding_Register,40027,Bypass_Volts_BN_Ovr,uint16,,410019,Integer,Bypass_Volts_BN_Ovr
|
||||
Input_Register,30025,Bypass_Volts_CA,uint16,40025,,,Bypass_Volts_CA
|
||||
Holding_Register,40025,Bypass_Volts_CA_Ovr,uint16,,410021,Integer,Bypass_Volts_CA_Ovr
|
||||
Input_Register,30028,Bypass_Volts_CN,uint16,40028,,,Bypass_Volts_CN
|
||||
Holding_Register,40028,Bypass_Volts_CN_Ovr,uint16,,410023,Integer,Bypass_Volts_CN_Ovr
|
||||
Input_Register,30175,DC_Bus_Voltage,uint16,40175,,,DC_Bus_Voltage
|
||||
Holding_Register,40175,DC_Bus_Voltage_Ovr,uint16,,410025,Integer,DC_Bus_Voltage_Ovr
|
||||
Input_Register,30050,Freq,uint16,40050,,,Freq
|
||||
Holding_Register,40050,Freq_Ovr,uint16,,410027,Integer,Freq_Ovr
|
||||
Input_Register,30007,Input_Amps_A,uint16,40007,,,Input_Amps_A
|
||||
Holding_Register,40007,Input_Amps_A_Ovr,uint16,,410029,Integer,Input_Amps_A_Ovr
|
||||
Input_Register,30008,Input_Amps_B,uint16,40008,,,Input_Amps_B
|
||||
Holding_Register,40008,Input_Amps_B_Ovr,uint16,,410031,Integer,Input_Amps_B_Ovr
|
||||
Input_Register,30009,Input_Amps_C,uint16,40009,,,Input_Amps_C
|
||||
Holding_Register,40009,Input_Amps_C_Ovr,uint16,,410033,Integer,Input_Amps_C_Ovr
|
||||
Input_Register,30010,Input_Freq,uint16,40010,,,Input_Freq
|
||||
Holding_Register,40010,Input_Freq_Ovr,uint16,,410035,Integer,Input_Freq_Ovr
|
||||
Input_Register,30017,Input_kVA_A,uint16,40017,,,Input_kVA_A
|
||||
Holding_Register,40017,Input_kVA_A_Ovr,uint16,,410037,Integer,Input_kVA_A_Ovr
|
||||
Input_Register,30018,Input_kVA_B,uint16,40018,,,Input_kVA_B
|
||||
Holding_Register,40018,Input_kVA_B_Ovr,uint16,,410039,Integer,Input_kVA_B_Ovr
|
||||
Input_Register,30019,Input_kVA_C,uint16,40019,,,Input_kVA_C
|
||||
Holding_Register,40019,Input_kVA_C_Ovr,uint16,,410041,Integer,Input_kVA_C_Ovr
|
||||
Input_Register,30014,Input_kW_A,uint16,40014,,,Input_kW_A
|
||||
Holding_Register,40014,Input_kW_A_Ovr,uint16,,410043,Integer,Input_kW_A_Ovr
|
||||
Input_Register,30015,Input_kW_B,uint16,40015,,,Input_kW_B
|
||||
Holding_Register,40015,Input_kW_B_Ovr,uint16,,410045,Integer,Input_kW_B_Ovr
|
||||
Input_Register,30016,Input_kW_C,uint16,40016,,,Input_kW_C
|
||||
Holding_Register,40016,Input_kW_C_Ovr,uint16,,410047,Integer,Input_kW_C_Ovr
|
||||
Input_Register,30011,Input_PF_A,uint16,40011,,,Input_PF_A
|
||||
Holding_Register,40011,Input_PF_A_Ovr,uint16,,410049,Integer,Input_PF_A_Ovr
|
||||
Input_Register,30012,Input_PF_B,uint16,40012,,,Input_PF_B
|
||||
Holding_Register,40012,Input_PF_B_Ovr,uint16,,410051,Integer,Input_PF_B_Ovr
|
||||
Input_Register,30013,Input_PF_C,uint16,40013,,,Input_PF_C
|
||||
Holding_Register,40013,Input_PF_C_Ovr,uint16,,410053,Integer,Input_PF_C_Ovr
|
||||
Input_Register,30001,Input_Volts_AB,uint16,40001,,,Input_Volts_AB
|
||||
Holding_Register,40001,Input_Volts_AB_Ovr,uint16,,410055,Integer,Input_Volts_AB_Ovr
|
||||
Input_Register,30004,Input_Volts_AN,uint16,40004,,,Input_Volts_AN
|
||||
Holding_Register,40004,Input_Volts_AN_Ovr,uint16,,410057,Integer,Input_Volts_AN_Ovr
|
||||
Input_Register,30002,Input_Volts_BC,uint16,40002,,,Input_Volts_BC
|
||||
Holding_Register,40002,Input_Volts_BC_Ovr,uint16,,410059,Integer,Input_Volts_BC_Ovr
|
||||
Input_Register,30005,Input_Volts_BN,uint16,40005,,,Input_Volts_BN
|
||||
Holding_Register,40005,Input_Volts_BN_Ovr,uint16,,410061,Integer,Input_Volts_BN_Ovr
|
||||
Input_Register,30003,Input_Volts_CA,uint16,40003,,,Input_Volts_CA
|
||||
Holding_Register,40003,Input_Volts_CA_Ovr,uint16,,410063,Integer,Input_Volts_CA_Ovr
|
||||
Input_Register,30006,Input_Volts_CN,uint16,40006,,,Input_Volts_CN
|
||||
Holding_Register,40006,Input_Volts_CN_Ovr,uint16,,410065,Integer,Input_Volts_CN_Ovr
|
||||
Input_Register,30044,Output_Amps_A,uint16,40044,,,Output_Amps_A
|
||||
Holding_Register,40044,Output_Amps_A_Ovr,uint16,,410067,Integer,Output_Amps_A_Ovr
|
||||
Input_Register,30045,Output_Amps_B,uint16,40045,,,Output_Amps_B
|
||||
Holding_Register,40045,Output_Amps_B_Ovr,uint16,,410069,Integer,Output_Amps_B_Ovr
|
||||
Input_Register,30046,Output_Amps_C,uint16,40046,,,Output_Amps_C
|
||||
Holding_Register,40046,Output_Amps_C_Ovr,uint16,,410071,Integer,Output_Amps_C_Ovr
|
||||
Input_Register,30061,Output_kVA,uint16,40061,,,Output_kVA
|
||||
Holding_Register,40061,Output_kVA_Ovr,uint16,,410143,Integer,Output_kVA_Ovr
|
||||
Input_Register,30057,Output_kVA_A,uint16,40057,,,Output_kVA_A
|
||||
Holding_Register,40057,Output_kVA_A_Ovr,uint16,,410147,Integer,Output_kVA_A_Ovr
|
||||
Input_Register,30058,Output_kVA_B,uint16,40058,,,Output_kVA_B
|
||||
Holding_Register,40058,Output_kVA_B_Ovr,uint16,,410151,Integer,Output_kVA_B_Ovr
|
||||
Input_Register,30059,Output_kVA_C,uint16,40059,,,Output_kVA_C
|
||||
Holding_Register,40059,Output_kVA_C_Ovr,uint16,,410155,Integer,Output_kVA_C_Ovr
|
||||
Input_Register,30060,Output_kW,uint16,40060,,,Output_kW
|
||||
Holding_Register,40060,Output_kW_Ovr,uint16,,410159,Integer,Output_kW_Ovr
|
||||
Input_Register,30054,Output_kW_A,uint16,40054,,,Output_kW_A
|
||||
Holding_Register,40054,Output_kW_A_Ovr,uint16,,410163,Integer,Output_kW_A_Ovr
|
||||
Input_Register,30055,Output_kW_B,uint16,40055,,,Output_kW_B
|
||||
Holding_Register,40055,Output_kW_B_Ovr,uint16,,410167,Integer,Output_kW_B_Ovr
|
||||
Input_Register,30056,Output_kW_C,uint16,40056,,,Output_kW_C
|
||||
Holding_Register,40056,Output_kW_C_Ovr,uint16,,410171,Integer,Output_kW_C_Ovr
|
||||
Input_Register,30051,Output_PF_A,uint16,40051,,,Output_PF_A
|
||||
Holding_Register,40051,Output_PF_A_Ovr,uint16,,410175,Integer,Output_PF_A_Ovr
|
||||
Input_Register,30052,Output_PF_B,uint16,40052,,,Output_PF_B
|
||||
Holding_Register,40052,Output_PF_B_Ovr,uint16,,410179,Integer,Output_PF_B_Ovr
|
||||
Input_Register,30053,Output_PF_C,uint16,40053,,,Output_PF_C
|
||||
Holding_Register,40053,Output_PF_C_Ovr,uint16,,410183,Integer,Output_PF_C_Ovr
|
||||
Input_Register,30038,Output_Volts_AB,uint16,40038,,,Output_Volts_AB
|
||||
Holding_Register,40038,Output_Volts_AB_Ovr,uint16,,410187,Integer,Output_Volts_AB_Ovr
|
||||
Input_Register,30041,Output_Volts_AN,uint16,40041,,,Output_Volts_AN
|
||||
Holding_Register,40041,Output_Volts_AN_Ovr,uint16,,410191,Integer,Output_Volts_AN_Ovr
|
||||
Input_Register,30039,Output_Volts_BC,uint16,40049,,,Output_Volts_BC
|
||||
Holding_Register,40049,Output_Volts_BC_Ovr,uint16,,410195,Integer,Output_Volts_BC_Ovr
|
||||
Input_Register,30042,Output_Volts_BN,uint16,40042,,,Output_Volts_BN
|
||||
Holding_Register,40042,Output_Volts_BN_Ovr,uint16,,410199,Integer,Output_Volts_BN_Ovr
|
||||
Input_Register,30040,Output_Volts_CA,uint16,40040,,,Output_Volts_CA
|
||||
Holding_Register,40040,Output_Volts_CA_Ovr,uint16,,410203,Integer,Output_Volts_CA_Ovr
|
||||
Input_Register,30043,Output_Volts_CN,uint16,40043,,,Output_Volts_CN
|
||||
Holding_Register,40043,Output_Volts_CN_Ovr,uint16,,410207,Integer,Output_Volts_CN_Ovr
|
||||
Input_Register,30164,UPS_Output_Source,uint16,40164,,,UPS_Output_Source
|
||||
Holding_Register,40164,UPS_Output_Source_Ovr,uint16,,410211,Integer,UPS_Output_Source_Ovr
|
||||
|
@@ -5,72 +5,72 @@ update_interval_ms=1000
|
||||
[wifi]
|
||||
ssid=M3000-4B29
|
||||
password=5bd84fd4
|
||||
dhcp=true
|
||||
static_ip=192.168.1.50
|
||||
gateway=192.168.1.1
|
||||
dhcp=false
|
||||
static_ip=172.30.33.20
|
||||
gateway=172.30.33.1
|
||||
netmask=255.255.255.0
|
||||
|
||||
[modbus]
|
||||
port=502
|
||||
max_clients=10
|
||||
device_count=9
|
||||
device_count=1
|
||||
|
||||
[device 1]
|
||||
enabled=1
|
||||
unit_id=1
|
||||
name=Device_1
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=Vertiv_CHLR_Modbus_v3.csv
|
||||
|
||||
[device 2]
|
||||
enabled=1
|
||||
unit_id=2
|
||||
name=Device_2
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=Susol_Smart-MCCB_Modbus_v3.csv
|
||||
|
||||
[device 3]
|
||||
enabled=1
|
||||
unit_id=3
|
||||
name=Device_3
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=UMAS_Modbus_v3.csv
|
||||
|
||||
[device 4]
|
||||
enabled=1
|
||||
unit_id=4
|
||||
name=Device_4
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=Vertiv_XDU-600_Modbus_v3.csv
|
||||
|
||||
[device 5]
|
||||
enabled=1
|
||||
unit_id=5
|
||||
name=Device_5
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
|
||||
[device 6]
|
||||
enabled=1
|
||||
unit_id=6
|
||||
name=Device_6
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
|
||||
[device 7]
|
||||
enabled=1
|
||||
unit_id=7
|
||||
name=Device_7
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
|
||||
[device 8]
|
||||
enabled=1
|
||||
unit_id=8
|
||||
name=Device_8
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
|
||||
[device 9]
|
||||
enabled=1
|
||||
unit_id=9
|
||||
name=Device_9
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
|
||||
[device 10]
|
||||
enabled=1
|
||||
unit_id=10
|
||||
name=Device_10
|
||||
csv=ESP32_Petra_PAH600.csv
|
||||
csv=ABB_XT_Modbus_v3.csv
|
||||
Reference in New Issue
Block a user