Modbus TCP - Multi Devices
This commit is contained in:
4
CMakeLists.txt
Normal file
4
CMakeLists.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
|
project(modbus_tcp_esp32)
|
||||||
42
README.txt
Normal file
42
README.txt
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
This is a simplified version of Modbus TCP that allows PICS to simulate the equipment:
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
- You will be able to view the data or edit the value
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
1
build/.bin_timestamp
Normal file
1
build/.bin_timestamp
Normal file
@@ -0,0 +1 @@
|
|||||||
|
d2de1095e0da2f2b06bd1e62fd10e304 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/modbus_tcp_esp32.bin
|
||||||
BIN
build/.ninja_deps
Normal file
BIN
build/.ninja_deps
Normal file
Binary file not shown.
1070
build/.ninja_log
Normal file
1070
build/.ninja_log
Normal file
File diff suppressed because it is too large
Load Diff
653
build/CMakeCache.txt
Normal file
653
build/CMakeCache.txt
Normal file
@@ -0,0 +1,653 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: c:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build
|
||||||
|
# It was generated by CMake: C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
CCACHE_ENABLE:UNINITIALIZED=False
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//Asm Compiler Base Flags
|
||||||
|
CMAKE_ASM_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain/asmflags"
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during DEBUG builds.
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELEASE builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C++ Compiler Base Flags
|
||||||
|
CMAKE_CXX_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain/cxxflags"
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C Compiler Base Flags
|
||||||
|
CMAKE_C_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain/cflags"
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Linker Base Flags
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain/ldflags"
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of build database during the build.
|
||||||
|
CMAKE_EXPORT_BUILD_DATABASE:BOOL=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//User executables (bin)
|
||||||
|
CMAKE_INSTALL_BINDIR:PATH=bin
|
||||||
|
|
||||||
|
//Read-only architecture-independent data (DATAROOTDIR)
|
||||||
|
CMAKE_INSTALL_DATADIR:PATH=
|
||||||
|
|
||||||
|
//Read-only architecture-independent data root (share)
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR:PATH=share
|
||||||
|
|
||||||
|
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
|
||||||
|
CMAKE_INSTALL_DOCDIR:PATH=
|
||||||
|
|
||||||
|
//C header files (include)
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR:PATH=include
|
||||||
|
|
||||||
|
//Info documentation (DATAROOTDIR/info)
|
||||||
|
CMAKE_INSTALL_INFODIR:PATH=
|
||||||
|
|
||||||
|
//Object code libraries (lib)
|
||||||
|
CMAKE_INSTALL_LIBDIR:PATH=lib
|
||||||
|
|
||||||
|
//Program executables (libexec)
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
|
||||||
|
|
||||||
|
//Locale-dependent data (DATAROOTDIR/locale)
|
||||||
|
CMAKE_INSTALL_LOCALEDIR:PATH=
|
||||||
|
|
||||||
|
//Modifiable single-machine data (var)
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
|
||||||
|
|
||||||
|
//Man documentation (DATAROOTDIR/man)
|
||||||
|
CMAKE_INSTALL_MANDIR:PATH=
|
||||||
|
|
||||||
|
//C header files for non-gcc (/usr/include)
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/modbus_tcp_esp32
|
||||||
|
|
||||||
|
//Run-time variable data (LOCALSTATEDIR/run)
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR:PATH=
|
||||||
|
|
||||||
|
//System admin executables (sbin)
|
||||||
|
CMAKE_INSTALL_SBINDIR:PATH=sbin
|
||||||
|
|
||||||
|
//Modifiable architecture-independent data (com)
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
|
||||||
|
|
||||||
|
//Read-only single-machine data (etc)
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe
|
||||||
|
|
||||||
|
//Program used to build from build.ninja files.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.12.1/ninja.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=modbus_tcp_esp32
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION:STATIC=4.0.0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MAJOR:STATIC=4
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MINOR:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-readelf.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||||
|
|
||||||
|
//The CMake toolchain file
|
||||||
|
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Disable package configuration, target export and installation
|
||||||
|
DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON
|
||||||
|
|
||||||
|
//Build TF-PSA-Crypto programs.
|
||||||
|
ENABLE_PROGRAMS:BOOL=OFF
|
||||||
|
|
||||||
|
//Build TF-PSA-Crypto tests.
|
||||||
|
ENABLE_TESTING:BOOL=OFF
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
ESP_PLATFORM:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//Generate the auto-generated files as needed
|
||||||
|
GEN_FILES:BOOL=OFF
|
||||||
|
|
||||||
|
//Git command line client
|
||||||
|
GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe
|
||||||
|
|
||||||
|
//IDF Build Target
|
||||||
|
IDF_TARGET:STRING=esp32
|
||||||
|
|
||||||
|
//IDF Build Toolchain Type
|
||||||
|
IDF_TOOLCHAIN:STRING=gcc
|
||||||
|
|
||||||
|
//Path to toolchain build directory containing response files and
|
||||||
|
// toolchain file copy
|
||||||
|
IDF_TOOLCHAIN_BUILD_DIR:PATH=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain
|
||||||
|
|
||||||
|
//Install Mbed TLS headers.
|
||||||
|
INSTALL_MBEDTLS_HEADERS:BOOL=ON
|
||||||
|
|
||||||
|
//Install TF PSA Crypto headers.
|
||||||
|
INSTALL_TF_PSA_CRYPTO_HEADERS:BOOL=ON
|
||||||
|
|
||||||
|
//Explicitly link Mbed TLS library to pthread.
|
||||||
|
LINK_WITH_PTHREAD:BOOL=OFF
|
||||||
|
|
||||||
|
//Explicitly link Mbed TLS library to trusted_storage.
|
||||||
|
LINK_WITH_TRUSTED_STORAGE:BOOL=OFF
|
||||||
|
|
||||||
|
//Mbed TLS config file (overrides default).
|
||||||
|
MBEDTLS_CONFIG_FILE:FILEPATH=
|
||||||
|
|
||||||
|
//Compiler warnings treated as errors
|
||||||
|
MBEDTLS_FATAL_WARNINGS:BOOL=ON
|
||||||
|
|
||||||
|
//Mbed TLS user config file (appended to default).
|
||||||
|
MBEDTLS_USER_CONFIG_FILE:FILEPATH=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Mbed TLS_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON:UNINITIALIZED=C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
TF-PSA-Crypto_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
TF-PSA-Crypto_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
TF-PSA-Crypto_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto
|
||||||
|
|
||||||
|
//TF-PSA-Crypto config file (overrides default).
|
||||||
|
TF_PSA_CRYPTO_CONFIG_FILE:FILEPATH=
|
||||||
|
|
||||||
|
//Compiler warnings treated as errors
|
||||||
|
TF_PSA_CRYPTO_FATAL_WARNINGS:BOOL=ON
|
||||||
|
|
||||||
|
TF_PSA_CRYPTO_TARGET_PREFIX:STRING=
|
||||||
|
|
||||||
|
//Path to the PSA Crypto configuration file
|
||||||
|
TF_PSA_CRYPTO_USER_CONFIG_FILE:STRING=mbedtls/esp_config.h
|
||||||
|
|
||||||
|
//Build Mbed TLS shared library.
|
||||||
|
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
|
||||||
|
|
||||||
|
//Build TF-PSA-Crypto shared library.
|
||||||
|
USE_SHARED_TF_PSA_CRYPTO_LIBRARY:BOOL=OFF
|
||||||
|
|
||||||
|
//Build Mbed TLS static library.
|
||||||
|
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
|
||||||
|
|
||||||
|
//Build TF-PSA-Crypto static library.
|
||||||
|
USE_STATIC_TF_PSA_CRYPTO_LIBRARY:BOOL=ON
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
builtin_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;general;idf::esp_security;
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;general;mbedx509;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;general;tfpsacrypto;
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
modbus_tcp_esp32_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
modbus_tcp_esp32_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
modbus_tcp_esp32_SOURCE_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;general;idf::esp_security;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
tfpsacrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_esp_stdio;general;__idf_xtensa;general;builtin;general;everest;general;p256m;general;__idf_nvs_flash;general;idf::esp_security;
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
|
||||||
|
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS
|
||||||
|
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=0
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cpack.exe
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/ctest.exe
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake-gui.exe
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE
|
||||||
|
CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Ninja
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||||
|
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
|
||||||
|
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
|
||||||
|
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
|
||||||
|
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
|
||||||
|
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
|
||||||
|
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
|
||||||
|
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
|
||||||
|
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
|
||||||
|
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//Name of CMakeLists files to read
|
||||||
|
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=155
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_TAPI
|
||||||
|
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS
|
||||||
|
C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1
|
||||||
|
//Details about finding Git
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.53.0.windows.1()]
|
||||||
|
//Details about finding Python3
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe][found components: Interpreter ][v3.13.12()]
|
||||||
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//ADVANCED property for variable: GIT_EXECUTABLE
|
||||||
|
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
//CMAKE_INSTALL_PREFIX during last run
|
||||||
|
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/modbus_tcp_esp32
|
||||||
|
//Compiler reason failure
|
||||||
|
_Python3_Compiler_REASON_FAILURE:INTERNAL=
|
||||||
|
//Development reason failure
|
||||||
|
_Python3_Development_REASON_FAILURE:INTERNAL=
|
||||||
|
_Python3_EXECUTABLE:INTERNAL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe
|
||||||
|
//Python3 Properties
|
||||||
|
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;13;12;32;64;;;abi3;C:\Users\e.adame\scoop\apps\python313\current\Lib;C:\Espressif\tools\python\v6.0\venv\Lib;C:\Espressif\tools\python\v6.0\venv\Lib\site-packages;C:\Espressif\tools\python\v6.0\venv\Lib\site-packages
|
||||||
|
_Python3_INTERPRETER_SIGNATURE:INTERNAL=1a80b43be9505f03a5985fe5109cf175
|
||||||
|
//NumPy reason failure
|
||||||
|
_Python3_NumPy_REASON_FAILURE:INTERNAL=
|
||||||
|
|
||||||
31
build/CMakeFiles/4.0.3/CMakeASMCompiler.cmake
Normal file
31
build/CMakeFiles/4.0.3/CMakeASMCompiler.cmake
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
set(CMAKE_ASM_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_ASM_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_ASM_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_ASM_COMPILER_VERSION "")
|
||||||
|
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_ASM_LINKER_PREFERENCE 0)
|
||||||
|
set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
|
||||||
85
build/CMakeFiles/4.0.3/CMakeCCompiler.cmake
Normal file
85
build/CMakeFiles/4.0.3/CMakeCCompiler.cmake
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
set(CMAKE_C_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "15.2.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_C_STANDARD_LATEST "23")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
109
build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake
Normal file
109
build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "15.2.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||||
|
### Imported target for C++23 standard library
|
||||||
|
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)")
|
||||||
|
|
||||||
|
|
||||||
|
### Imported target for C++26 standard library
|
||||||
|
set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BIN
build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin
Normal file
BIN
build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin
Normal file
Binary file not shown.
BIN
build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin
Normal file
BIN
build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin
Normal file
Binary file not shown.
15
build/CMakeFiles/4.0.3/CMakeSystem.cmake
Normal file
15
build/CMakeFiles/4.0.3/CMakeSystem.cmake
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Windows-10.0.26100")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Windows")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
|
||||||
|
|
||||||
|
include("C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/toolchain/toolchain-esp32.cmake")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Generic")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Generic")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
905
build/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c
Normal file
905
build/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c
Normal file
@@ -0,0 +1,905 @@
|
|||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__cray__)
|
||||||
|
# define COMPILER_ID "CrayClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
# define COMPILER_ID "Tasking"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||||
|
|
||||||
|
#elif defined(__ORANGEC__)
|
||||||
|
# define COMPILER_ID "OrangeC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# define COMPILER_ID "TIClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# if defined(__ARM_ARCH)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
|
||||||
|
# if defined(__CTC__) || defined(__CPTC__)
|
||||||
|
# define ARCHITECTURE_ID "TriCore"
|
||||||
|
|
||||||
|
# elif defined(__CMCS__)
|
||||||
|
# define ARCHITECTURE_ID "MCS"
|
||||||
|
|
||||||
|
# elif defined(__CARM__) || defined(__CPARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__CARC__)
|
||||||
|
# define ARCHITECTURE_ID "ARC"
|
||||||
|
|
||||||
|
# elif defined(__C51__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__CPCP__)
|
||||||
|
# define ARCHITECTURE_ID "PCP"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define C_STD_99 199901L
|
||||||
|
#define C_STD_11 201112L
|
||||||
|
#define C_STD_17 201710L
|
||||||
|
#define C_STD_23 202311L
|
||||||
|
|
||||||
|
#ifdef __STDC_VERSION__
|
||||||
|
# define C_STD __STDC_VERSION__
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__STDC__) && !defined(__clang__)
|
||||||
|
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||||
|
# define C_VERSION "90"
|
||||||
|
# else
|
||||||
|
# define C_VERSION
|
||||||
|
# endif
|
||||||
|
#elif C_STD > C_STD_17
|
||||||
|
# define C_VERSION "23"
|
||||||
|
#elif C_STD > C_STD_11
|
||||||
|
# define C_VERSION "17"
|
||||||
|
#elif C_STD > C_STD_99
|
||||||
|
# define C_VERSION "11"
|
||||||
|
#elif C_STD >= C_STD_99
|
||||||
|
# define C_VERSION "99"
|
||||||
|
#else
|
||||||
|
# define C_VERSION "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_standard_default =
|
||||||
|
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
BIN
build/CMakeFiles/4.0.3/CompilerIdC/a.out
Normal file
BIN
build/CMakeFiles/4.0.3/CompilerIdC/a.out
Normal file
Binary file not shown.
920
build/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
920
build/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
Normal file
@@ -0,0 +1,920 @@
|
|||||||
|
/* This source file must have a .cpp extension so that all C++ compilers
|
||||||
|
recognize the extension without flags. Borland does not know .cxx for
|
||||||
|
example. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
# error "A C compiler has been selected for C++."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_CC)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_CC >= 0x5100
|
||||||
|
/* __SUNPRO_CC = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_aCC)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_aCC = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECCXX)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECCXX_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__cray__)
|
||||||
|
# define COMPILER_ID "CrayClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
# define COMPILER_ID "Tasking"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||||
|
|
||||||
|
#elif defined(__ORANGEC__)
|
||||||
|
# define COMPILER_ID "OrangeC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# define COMPILER_ID "TIClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# if defined(__ARM_ARCH)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
|
||||||
|
# if defined(__CTC__) || defined(__CPTC__)
|
||||||
|
# define ARCHITECTURE_ID "TriCore"
|
||||||
|
|
||||||
|
# elif defined(__CMCS__)
|
||||||
|
# define ARCHITECTURE_ID "MCS"
|
||||||
|
|
||||||
|
# elif defined(__CARM__) || defined(__CPARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__CARC__)
|
||||||
|
# define ARCHITECTURE_ID "ARC"
|
||||||
|
|
||||||
|
# elif defined(__C51__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__CPCP__)
|
||||||
|
# define ARCHITECTURE_ID "PCP"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define CXX_STD_98 199711L
|
||||||
|
#define CXX_STD_11 201103L
|
||||||
|
#define CXX_STD_14 201402L
|
||||||
|
#define CXX_STD_17 201703L
|
||||||
|
#define CXX_STD_20 202002L
|
||||||
|
#define CXX_STD_23 202302L
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > CXX_STD_17
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
# else
|
||||||
|
# define CXX_STD CXX_STD_98
|
||||||
|
# endif
|
||||||
|
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > __cplusplus
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__INTEL_COMPILER) || defined(__PGI)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
#else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||||
|
#if CXX_STD > CXX_STD_23
|
||||||
|
"26"
|
||||||
|
#elif CXX_STD > CXX_STD_20
|
||||||
|
"23"
|
||||||
|
#elif CXX_STD > CXX_STD_17
|
||||||
|
"20"
|
||||||
|
#elif CXX_STD > CXX_STD_14
|
||||||
|
"17"
|
||||||
|
#elif CXX_STD > CXX_STD_11
|
||||||
|
"14"
|
||||||
|
#elif CXX_STD >= CXX_STD_11
|
||||||
|
"11"
|
||||||
|
#else
|
||||||
|
"98"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
BIN
build/CMakeFiles/4.0.3/CompilerIdCXX/a.out
Normal file
BIN
build/CMakeFiles/4.0.3/CompilerIdCXX/a.out
Normal file
Binary file not shown.
1695
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
1695
build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
File diff suppressed because it is too large
Load Diff
161
build/CMakeFiles/InstallScripts.json
Normal file
161
build/CMakeFiles/InstallScripts.json
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
{
|
||||||
|
"InstallScripts" :
|
||||||
|
[
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/xtensa/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_stdio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_dma/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_clock/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_blockdev/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_security/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/bootloader/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esptool_py/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/partition_table/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_app_format/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/app_update/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_partition/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/efuse/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_security/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_uart/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_pm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_mm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_dma/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_timg/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/bootloader_support/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/spi_flash/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_system/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_system/port/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_common/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_rom/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/hal/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/log/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/heap/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/soc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_usb/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hw_support/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/freertos/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_libc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/pthread/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/cxx/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_timer/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_ringbuf/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_psram/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_uart/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/app_trace/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_event/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/nvs_flash/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_phy/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/vfs/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/lwip/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_netif_stack/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_netif/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/wpa_supplicant/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_coex/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_wifi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_spi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_gdbstub/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/bt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/unity/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/cmock/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/console/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_twai/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/driver/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/http_parser/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp-tls/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_adc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_cam/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_isp/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_cam/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_dac/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/sdmmc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_driver_twai/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_eth/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_hid/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/tcp_transport/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_http_client/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_http_server/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_https_ota/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_https_server/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_lcd/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/protobuf-c/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/protocomm/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_trace/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/espcoredump/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/wear_levelling/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/fatfs/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/idf_test/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/ieee802154/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/openthread/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/perfmon/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/rt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/spiffs/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/ulp/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/main/cmake_install.cmake"
|
||||||
|
],
|
||||||
|
"Parallel" : false
|
||||||
|
}
|
||||||
1086
build/CMakeFiles/TargetDirectories.txt
Normal file
1086
build/CMakeFiles/TargetDirectories.txt
Normal file
File diff suppressed because it is too large
Load Diff
0
build/CMakeFiles/bootloader-complete
Normal file
0
build/CMakeFiles/bootloader-complete
Normal file
43
build/CMakeFiles/bootloader.dir/Labels.json
Normal file
43
build/CMakeFiles/bootloader.dir/Labels.json
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader-complete.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"target" :
|
||||||
|
{
|
||||||
|
"labels" :
|
||||||
|
[
|
||||||
|
"bootloader"
|
||||||
|
],
|
||||||
|
"name" : "bootloader"
|
||||||
|
}
|
||||||
|
}
|
||||||
13
build/CMakeFiles/bootloader.dir/Labels.txt
Normal file
13
build/CMakeFiles/bootloader.dir/Labels.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# Target labels
|
||||||
|
bootloader
|
||||||
|
# Source files and their labels
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/bootloader-complete.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule
|
||||||
25
build/CMakeFiles/clean_additional.cmake
Normal file
25
build/CMakeFiles/clean_additional.cmake
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# Additional clean files
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"bootloader\\bootloader.bin"
|
||||||
|
"bootloader\\bootloader.elf"
|
||||||
|
"bootloader\\bootloader.map"
|
||||||
|
"config\\sdkconfig.cmake"
|
||||||
|
"config\\sdkconfig.h"
|
||||||
|
"esp-idf\\mbedtls\\x509_crt_bundle"
|
||||||
|
"flash_app_args"
|
||||||
|
"flash_bootloader_args"
|
||||||
|
"flash_project_args"
|
||||||
|
"flasher_args.json"
|
||||||
|
"flasher_args.json.in"
|
||||||
|
"ldgen_libraries"
|
||||||
|
"ldgen_libraries.in"
|
||||||
|
"modbus_tcp_esp32.bin"
|
||||||
|
"modbus_tcp_esp32.map"
|
||||||
|
"project_elf_src_esp32.c"
|
||||||
|
"spiffs.bin"
|
||||||
|
"x509_crt_bundle.S"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
1
build/CMakeFiles/cmake.check_cache
Normal file
1
build/CMakeFiles/cmake.check_cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
build/CMakeFiles/git-data/HEAD
Normal file
1
build/CMakeFiles/git-data/HEAD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
662a3be354759d9487bf4b1a629fadb766cb1800
|
||||||
50
build/CMakeFiles/git-data/grabRef.cmake
Normal file
50
build/CMakeFiles/git-data/grabRef.cmake
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
#
|
||||||
|
# Internal file for GetGitRevisionDescription.cmake
|
||||||
|
#
|
||||||
|
# Requires CMake 2.6 or newer (uses the 'function' command)
|
||||||
|
#
|
||||||
|
# Original Author:
|
||||||
|
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||||
|
# http://academic.cleardefinition.com
|
||||||
|
# Iowa State University HCI Graduate Program/VRAC
|
||||||
|
#
|
||||||
|
# Copyright Iowa State University 2009-2010.
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
set(HEAD_HASH)
|
||||||
|
|
||||||
|
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
|
||||||
|
|
||||||
|
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
|
||||||
|
set(GIT_DIR "C:/esp/v6.0/esp-idf/.git")
|
||||||
|
# handle git-worktree
|
||||||
|
if(EXISTS "${GIT_DIR}/commondir")
|
||||||
|
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
|
||||||
|
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
|
||||||
|
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
|
||||||
|
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
|
||||||
|
endif()
|
||||||
|
if(EXISTS "${GIT_DIR_NEW}")
|
||||||
|
set(GIT_DIR "${GIT_DIR_NEW}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
if(HEAD_CONTENTS MATCHES "ref")
|
||||||
|
# named branch
|
||||||
|
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
|
||||||
|
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
set(HEAD_HASH "${HEAD_REF}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# detached HEAD
|
||||||
|
configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT HEAD_HASH)
|
||||||
|
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
|
||||||
|
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||||
|
endif()
|
||||||
1
build/CMakeFiles/git-data/head-ref
Normal file
1
build/CMakeFiles/git-data/head-ref
Normal file
@@ -0,0 +1 @@
|
|||||||
|
662a3be354759d9487bf4b1a629fadb766cb1800
|
||||||
Binary file not shown.
2198
build/CMakeFiles/rules.ninja
Normal file
2198
build/CMakeFiles/rules.ninja
Normal file
File diff suppressed because it is too large
Load Diff
9
build/CMakeFiles/sections.ld-d65dc84.bat
Normal file
9
build/CMakeFiles/sections.ld-d65dc84.bat
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
@echo off
|
||||||
|
cd /D C:\Users\e.adame\Documents\ESP32_Modbus_TCP_to_PICS_MULTI\build || (set FAIL_LINE=2& goto :ABORT)
|
||||||
|
C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/ldgen/ldgen.py --config C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/sdkconfig --fragments-list C:/esp/v6.0/esp-idf/components/xtensa/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_gpio/linker.lf;C:/esp/v6.0/esp-idf/components/esp_pm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_mm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_dma/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hal_wdt/linker.lf;C:/esp/v6.0/esp-idf/components/spi_flash/linker.lf;C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/linker.lf;C:/esp/v6.0/esp-idf/components/esp_system/linker.lf;C:/esp/v6.0/esp-idf/components/esp_system/app.lf;C:/esp/v6.0/esp-idf/components/esp_common/common.lf;C:/esp/v6.0/esp-idf/components/esp_common/soc.lf;C:/esp/v6.0/esp-idf/components/esp_rom/linker.lf;C:/esp/v6.0/esp-idf/components/hal/linker.lf;C:/esp/v6.0/esp-idf/components/log/linker.lf;C:/esp/v6.0/esp-idf/components/heap/linker.lf;C:/esp/v6.0/esp-idf/components/soc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hal_pmu/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf;C:/esp/v6.0/esp-idf/components/freertos/linker_common.lf;C:/esp/v6.0/esp-idf/components/freertos/linker.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/esp_libc.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/system_libs.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/libc.lf;C:/esp/v6.0/esp-idf/components/esp_ringbuf/linker.lf;C:/esp/v6.0/esp-idf/components/esp_psram/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_uart/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/linker.lf;C:/esp/v6.0/esp-idf/components/app_trace/linker.lf;C:/esp/v6.0/esp-idf/components/esp_event/linker.lf;C:/esp/v6.0/esp-idf/components/esp_phy/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;C:/esp/v6.0/esp-idf/components/vfs/linker.lf;C:/esp/v6.0/esp-idf/components/lwip/linker.lf;C:/esp/v6.0/esp-idf/components/esp_netif/linker.lf;C:/esp/v6.0/esp-idf/components/wpa_supplicant/linker.lf;C:/esp/v6.0/esp-idf/components/esp_wifi/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_spi/linker.lf;C:/esp/v6.0/esp-idf/components/esp_gdbstub/linker.lf;C:/esp/v6.0/esp-idf/components/driver/i2c/linker.lf;C:/esp/v6.0/esp-idf/components/driver/twai/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i2s/linker.lf;C:/esp/v6.0/esp-idf/components/esp_adc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_isp/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_dac/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i2c/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i3c/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_ledc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_parlio/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_rmt/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_sdm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_twai/linker.lf;C:/esp/v6.0/esp-idf/components/esp_eth/linker.lf;C:/esp/v6.0/esp-idf/components/esp_lcd/linker.lf;C:/esp/v6.0/esp-idf/components/esp_trace/linker.lf;C:/esp/v6.0/esp-idf/components/ieee802154/linker.lf;C:/esp/v6.0/esp-idf/components/openthread/linker.lf --input C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in --output C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/esp/v6.0/esp-idf/Kconfig --env-file C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/config.env --libraries-file C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/ldgen_libraries --objdump C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe || (set FAIL_LINE=3& goto :ABORT)
|
||||||
|
goto :EOF
|
||||||
|
|
||||||
|
:ABORT
|
||||||
|
set ERROR_CODE=%ERRORLEVEL%
|
||||||
|
echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL%
|
||||||
|
exit /b %ERROR_CODE%
|
||||||
2
build/app-flash_args
Normal file
2
build/app-flash_args
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
--flash-mode dio --flash-freq 40m --flash-size 2MB
|
||||||
|
0x10000 modbus_tcp_esp32.bin
|
||||||
2
build/app-flash_args.in
Normal file
2
build/app-flash_args.in
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
--flash-mode dio --flash-freq 40m --flash-size 2MB
|
||||||
|
0x10000 $<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin
|
||||||
2
build/bootloader-flash_args
Normal file
2
build/bootloader-flash_args
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
--flash-mode dio --flash-freq 40m --flash-size 2MB
|
||||||
|
0x1000 bootloader/bootloader.bin
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# This is a generated file and its contents are an internal implementation detail.
|
||||||
|
# The update step will be re-executed if anything in this file changes.
|
||||||
|
# No other meaning or use of this file is supported.
|
||||||
|
|
||||||
|
command=
|
||||||
|
work_dir=
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# This is a generated file and its contents are an internal implementation detail.
|
||||||
|
# The download step will be re-executed if anything in this file changes.
|
||||||
|
# No other meaning or use of this file is supported.
|
||||||
|
|
||||||
|
method=source_dir
|
||||||
|
command=
|
||||||
|
source_dir=C:/esp/v6.0/esp-idf/components/bootloader/subproject
|
||||||
|
work_dir=
|
||||||
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# This is a generated file and its contents are an internal implementation detail.
|
||||||
|
# The patch step will be re-executed if anything in this file changes.
|
||||||
|
# No other meaning or use of this file is supported.
|
||||||
|
|
||||||
|
command (connected)=
|
||||||
|
command (disconnected)=
|
||||||
|
work_dir=
|
||||||
1
build/bootloader-prefix/tmp/bootloader-cfgcmd.txt
Normal file
1
build/bootloader-prefix/tmp/bootloader-cfgcmd.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
cmd='C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe;-DSDKCONFIG=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/sdkconfig;-DIDF_PATH=C:/esp/v6.0/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/esp/v6.0/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'
|
||||||
27
build/bootloader-prefix/tmp/bootloader-mkdirs.cmake
Normal file
27
build/bootloader-prefix/tmp/bootloader-mkdirs.cmake
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||||
|
# file LICENSE.rst or https://cmake.org/licensing for details.
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake
|
||||||
|
|
||||||
|
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
|
||||||
|
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
|
||||||
|
# would cause a fatal error, even though it would be a no-op.
|
||||||
|
if(NOT EXISTS "C:/esp/v6.0/esp-idf/components/bootloader/subproject")
|
||||||
|
file(MAKE_DIRECTORY "C:/esp/v6.0/esp-idf/components/bootloader/subproject")
|
||||||
|
endif()
|
||||||
|
file(MAKE_DIRECTORY
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader"
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix"
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/tmp"
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp"
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src"
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp"
|
||||||
|
)
|
||||||
|
|
||||||
|
set(configSubDirs )
|
||||||
|
foreach(subDir IN LISTS configSubDirs)
|
||||||
|
file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
|
||||||
|
endforeach()
|
||||||
|
if(cfgdir)
|
||||||
|
file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
|
||||||
|
endif()
|
||||||
1
build/bootloader/.bin_timestamp
Normal file
1
build/bootloader/.bin_timestamp
Normal file
@@ -0,0 +1 @@
|
|||||||
|
79a8cf02762c5b4258a1e320045e4344 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/bootloader.bin
|
||||||
BIN
build/bootloader/.ninja_deps
Normal file
BIN
build/bootloader/.ninja_deps
Normal file
Binary file not shown.
147
build/bootloader/.ninja_log
Normal file
147
build/bootloader/.ninja_log
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
# ninja log v6
|
||||||
|
57 492 7972154535318198 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj 4451942021367bdc
|
||||||
|
40 613 7972154535142014 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 7cb451d975ec3573
|
||||||
|
33 634 7972154535072265 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj c37d01593bf3264a
|
||||||
|
65 655 7972154535399466 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 69a2d7d593a3b857
|
||||||
|
81 668 7972154535561741 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 6978407adc596c6a
|
||||||
|
73 683 7972154535480602 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 3467e61f70bf017a
|
||||||
|
27 695 7972154535015803 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 4c80e6106182158a
|
||||||
|
48 706 7972154535226086 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj e27771d6107a4a16
|
||||||
|
122 720 7972154535972408 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj be7212bd51050677
|
||||||
|
157 835 7972154536319632 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 4420cb1f3a80e5bc
|
||||||
|
89 884 7972154535641735 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj 58ba17b1769b67bd
|
||||||
|
166 894 7972154536407873 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 3114fecd00514910
|
||||||
|
100 906 7972154535741285 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 4521e9020b7f202
|
||||||
|
132 926 7972154536060585 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj 76155d0236205b8
|
||||||
|
113 1025 7972154535870385 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj d28917b62b461b2d
|
||||||
|
143 1368 7972154536179681 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj f00ab5fa240eb892
|
||||||
|
494 1469 7972154539692340 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj d706ec15c83d53f8
|
||||||
|
683 1483 7972154541584871 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj df508d684d8d75b3
|
||||||
|
668 1497 7972154541430986 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b35bf089edad1255
|
||||||
|
614 1588 7972154540896731 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 7e4f720c3f8d8b8b
|
||||||
|
635 1605 7972154541097478 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 21a5c102472de156
|
||||||
|
655 1666 7972154541302093 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj 15ca2f8341578a0b
|
||||||
|
720 1685 7972154541946693 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 15e77868241e11f0
|
||||||
|
836 1892 7972154543106649 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj eef999e7c6350eb3
|
||||||
|
927 1920 7972154544018573 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 93a3f03d6423809e
|
||||||
|
907 2041 7972154543811983 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj 991ff4e0c80b7768
|
||||||
|
707 2074 7972154541809535 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 6a887c47c88dfc85
|
||||||
|
1026 2193 7972154545000972 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj ba046057ca2db645
|
||||||
|
695 2249 7972154541704978 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj fbe96d785b15f8cf
|
||||||
|
895 2310 7972154543697996 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 82ce244c0656f38e
|
||||||
|
1368 2586 7972154548433045 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj de597e7cd984a797
|
||||||
|
1606 2692 7972154550806843 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj c928208caef3b436
|
||||||
|
1483 2725 7972154549576776 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 3cd02a2060cfad77
|
||||||
|
1497 2778 7972154549720912 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj bdceb84ab3b11074
|
||||||
|
1686 3008 7972154551603548 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 802bda4354e2c211
|
||||||
|
1921 3025 7972154553958905 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 78cc4b27a3942b38
|
||||||
|
1892 3038 7972154553674482 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 4c3c83326d426ab8
|
||||||
|
885 3065 7972154543590434 esp-idf/log/liblog.a e92d446a05650353
|
||||||
|
1666 3094 7972154551408267 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 6438bd7dfa50ae56
|
||||||
|
1470 3116 7972154549437871 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 891ff92cb4943e95
|
||||||
|
1589 3206 7972154550640851 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj acc0a347161a944
|
||||||
|
2193 3474 7972154556682276 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj c7853d041691d20
|
||||||
|
2075 3505 7972154555502909 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 6ae4791e32669b84
|
||||||
|
2041 3521 7972154555161977 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj acb3bf321920c107
|
||||||
|
2249 3593 7972154557237366 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7135116d01083cc2
|
||||||
|
2311 3634 7972154557856293 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 55321c4ae346be9
|
||||||
|
3009 4114 7972154564835926 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 33a421d1f48414be
|
||||||
|
3039 4214 7972154565129794 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj f0b423b4f2f34941
|
||||||
|
3116 4264 7972154565912321 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj dbc567c1659f3b9b
|
||||||
|
2725 4321 7972154562001483 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj c54f5ee03af9cc3d
|
||||||
|
2692 4353 7972154561666534 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 85e6e194acd680f8
|
||||||
|
3207 4376 7972154566811535 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj c5f8d49f0887fe15
|
||||||
|
3506 4395 7972154569803130 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj a609a49a6176a275
|
||||||
|
2586 4418 7972154560603253 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj fccf70dbb0f0ec0e
|
||||||
|
3475 4442 7972154569499298 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 7995dc7bfb45bb44
|
||||||
|
3095 4457 7972154565702153 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj c9e594f085ca3e53
|
||||||
|
3066 4514 7972154565405842 esp-idf/esp_rom/libesp_rom.a e7593de44d2eb46e
|
||||||
|
3635 4559 7972154571098413 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj a72fa4b1cbe9cad6
|
||||||
|
2779 4575 7972154562536210 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 6bbf90485873155
|
||||||
|
3594 4958 7972154570687641 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 46814609e790bc20
|
||||||
|
4214 5101 7972154576890588 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj 9109f8382dcdbd2
|
||||||
|
4114 5171 7972154575892062 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj e200368c0473764e
|
||||||
|
4265 5225 7972154577394902 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj a02ba75e1db4fb6b
|
||||||
|
3025 5253 7972154564998178 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 9f28fcb40d078510
|
||||||
|
3521 5275 7972154569965531 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj b2e936181f1e044f
|
||||||
|
4322 5297 7972154577968920 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj 3f43a1b3184106bd
|
||||||
|
4353 5310 7972154578281829 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj d5d332f9d7fb9683
|
||||||
|
4396 5325 7972154578703212 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj b2417be18c96d276
|
||||||
|
4442 5337 7972154579170614 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj 73a0e08b65065d8b
|
||||||
|
4419 5456 7972154578932863 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj 86b826d540e76537
|
||||||
|
4576 5505 7972154580497932 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj ecb92a8654aafe0
|
||||||
|
4457 5540 7972154579313493 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj 4e98260d5b60662c
|
||||||
|
4959 5591 7972154584328446 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj 87a78992e4c353c5
|
||||||
|
4559 5628 7972154580341105 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj 361a0044d57e20ca
|
||||||
|
4376 5764 7972154578510094 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj 64fc4065a6c926c
|
||||||
|
4514 5846 7972154579891838 esp-idf/esp_common/libesp_common.a 5c296d53dad7655f
|
||||||
|
5172 5973 7972154586471557 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj 6b32d51e5363482c
|
||||||
|
5253 6017 7972154587284401 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 34a7c85ac0278db
|
||||||
|
5226 6041 7972154587010724 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj 59cc0d3a7e0f8b2
|
||||||
|
5101 6085 7972154585759361 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj ecd722345b807da6
|
||||||
|
5310 6178 7972154587849944 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj e09fc74a6ce8ac5f
|
||||||
|
5276 6292 7972154587509276 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj d468f25889eacc6b
|
||||||
|
5325 6369 7972154588004998 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj e9d2e306159879cb
|
||||||
|
5506 6507 7972154589805452 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj c8ea59eb7da92493
|
||||||
|
5457 6538 7972154589315173 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj 9b2022d348f5e043
|
||||||
|
5298 6552 7972154587724572 esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj 973b2fb366c28b87
|
||||||
|
5591 6609 7972154590660471 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj 5e17b42d27b52455
|
||||||
|
5629 6652 7972154591032789 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj 6c24ebda1f9c5bee
|
||||||
|
5338 6836 7972154588128009 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj 7a29f18cc494aac6
|
||||||
|
5974 6864 7972154594483592 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj 7efd0648944212f2
|
||||||
|
5765 6891 7972154592390919 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj cee1961156554be3
|
||||||
|
6017 6920 7972154594920875 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj c188dfdaa46729c3
|
||||||
|
6085 6969 7972154595603231 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj fc34fce27d3742aa
|
||||||
|
6041 6997 7972154595157395 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj a6e8a5936855987c
|
||||||
|
5847 7157 7972154593218886 esp-idf/esp_hw_support/libesp_hw_support.a 3eee41f06c3b2a3c
|
||||||
|
6178 7195 7972154596529394 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj da8957aaabaa93f4
|
||||||
|
6552 7324 7972154600269579 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 41e397edea953911
|
||||||
|
6369 7340 7972154598442078 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj a8ca233a7e4fa0d9
|
||||||
|
6538 7360 7972154600126095 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 3219c7c40ca5d5ac
|
||||||
|
6610 7384 7972154600850230 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj da0d153a0b24095c
|
||||||
|
6508 7400 7972154599822777 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 7a4648362d3b207a
|
||||||
|
6653 7402 7972154601280095 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 83d77aa704830203
|
||||||
|
6864 7471 7972154603387488 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj 3c0f001cffe5fec6
|
||||||
|
6836 7538 7972154603110649 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj 5996727f31d6c2ba
|
||||||
|
6292 7544 7972154597669169 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 2caf4f87d7cee061
|
||||||
|
6892 7589 7972154603668029 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 7fd3e39707aaddec
|
||||||
|
6969 7602 7972154604441473 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj 6950ed19b45f4c20
|
||||||
|
6920 7664 7972154603952036 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj b2ac281a7013b1d2
|
||||||
|
5541 7667 7972154590155700 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj 932cac3a663c2b69
|
||||||
|
7340 7676 7972154611209628 project_elf_src_esp32.c f97fb73e06787b58
|
||||||
|
7340 7676 7972154611209628 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/project_elf_src_esp32.c f97fb73e06787b58
|
||||||
|
6997 7692 7972154611444486 ld/bootloader.ld 3b3b5cca0db4b53b
|
||||||
|
6997 7692 7972154611444486 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/ld/bootloader.ld 3b3b5cca0db4b53b
|
||||||
|
7195 7757 7972154606702168 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj e2f8191d0e5f3fd3
|
||||||
|
7324 7858 7972154607990335 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 5f008047d5175740
|
||||||
|
7157 7865 7972154606321373 esp-idf/esp_system/libesp_system.a c8f49980489c2a0d
|
||||||
|
7705 8007 7972154611799984 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 7c75739c6f876337
|
||||||
|
7693 8148 7972154611671818 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 6d865d98eab80ea5
|
||||||
|
7865 8326 7972154613402759 esp-idf/efuse/libefuse.a ad45dec6547a20d
|
||||||
|
8326 8736 7972154618003089 esp-idf/bootloader_support/libbootloader_support.a f6aef28c006d00f0
|
||||||
|
8736 8983 7972154622110894 esp-idf/esp_security/libesp_security.a 7cdae8ce3fd4a726
|
||||||
|
8983 9227 7972154624582496 esp-idf/esp_hal_security/libesp_hal_security.a d1dc3c805130a118
|
||||||
|
9227 9478 7972154627016263 esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a f0746abde0c53346
|
||||||
|
9478 9700 7972154629530092 esp-idf/esp_hal_i2s/libesp_hal_i2s.a 1d9979c10620323d
|
||||||
|
9700 9932 7972154631742487 esp-idf/esp_hal_uart/libesp_hal_uart.a ef2a9dcedccec470
|
||||||
|
9932 10156 7972154634066342 esp-idf/esp_hal_wdt/libesp_hal_wdt.a 75b49b567880b7d8
|
||||||
|
10156 10372 7972154636311285 esp-idf/esp_hal_timg/libesp_hal_timg.a d4228b7d3bb9c0dd
|
||||||
|
10372 10577 7972154638460642 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 2836833748619cc0
|
||||||
|
10577 10789 7972154640511640 esp-idf/spi_flash/libspi_flash.a 8b56a5a671c69517
|
||||||
|
10789 10998 7972154642638189 esp-idf/esp_hal_clock/libesp_hal_clock.a e7275f1c569e76f2
|
||||||
|
10998 11240 7972154644720265 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a 103961cda5058008
|
||||||
|
11240 11466 7972154647142057 esp-idf/micro-ecc/libmicro-ecc.a 42df0f4b4c268fd1
|
||||||
|
11466 11733 7972154649411872 esp-idf/esp_hal_gpio/libesp_hal_gpio.a 6106264496f6409a
|
||||||
|
11733 11993 7972154652072012 esp-idf/hal/libhal.a b70cb7edf3b5fe50
|
||||||
|
11993 12271 7972154654670809 esp-idf/soc/libsoc.a f54c230d61dd65a0
|
||||||
|
12271 12522 7972154657454988 esp-idf/xtensa/libxtensa.a 429a4b2358a93fc5
|
||||||
|
12522 12764 7972154659969346 esp-idf/main/libmain.a 405077a36f6e7870
|
||||||
|
12764 13106 7972154662391461 bootloader.elf a3b5a983e0df2fc
|
||||||
|
13106 13717 7972154671782032 .bin_timestamp 7a87e1c09ef7923b
|
||||||
|
13106 13717 7972154671782032 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/.bin_timestamp 7a87e1c09ef7923b
|
||||||
|
13717 13912 7972154671920524 CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
|
13717 13912 7972154671920524 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
|
39 213 7972154831837810 CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
|
39 213 7972154831837810 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
|
47 296 7972154841111517 CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
|
47 296 7972154841111517 C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size 1e56c09295d1a8bd
|
||||||
455
build/bootloader/CMakeCache.txt
Normal file
455
build/bootloader/CMakeCache.txt
Normal file
@@ -0,0 +1,455 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: c:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader
|
||||||
|
# It was generated by CMake: C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//Asm Compiler Base Flags
|
||||||
|
CMAKE_ASM_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain/asmflags"
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during DEBUG builds.
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELEASE builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C++ Compiler Base Flags
|
||||||
|
CMAKE_CXX_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain/cxxflags"
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
|
||||||
|
|
||||||
|
//C Compiler Base Flags
|
||||||
|
CMAKE_C_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain/cflags"
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Linker Base Flags
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain/ldflags"
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of build database during the build.
|
||||||
|
CMAKE_EXPORT_BUILD_DATABASE:BOOL=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe
|
||||||
|
|
||||||
|
//Program used to build from build.ninja files.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.12.1/ninja.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=bootloader
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-readelf.exe
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||||
|
|
||||||
|
//The CMake toolchain file
|
||||||
|
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
EXTRA_COMPONENT_DIRS:UNINITIALIZED=C:/esp/v6.0/esp-idf/components/bootloader
|
||||||
|
|
||||||
|
//Git command line client
|
||||||
|
GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
IDF_PATH:UNINITIALIZED=C:/esp/v6.0/esp-idf
|
||||||
|
|
||||||
|
//IDF Build Target
|
||||||
|
IDF_TARGET:STRING=esp32
|
||||||
|
|
||||||
|
//IDF Build Toolchain Type
|
||||||
|
IDF_TOOLCHAIN:STRING=gcc
|
||||||
|
|
||||||
|
//Path to toolchain build directory containing response files and
|
||||||
|
// toolchain file copy
|
||||||
|
IDF_TOOLCHAIN_BUILD_DIR:PATH=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
IGNORE_EXTRA_COMPONENT:UNINITIALIZED=
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON:UNINITIALIZED=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
SDKCONFIG:UNINITIALIZED=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/sdkconfig
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
bootloader_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/bootloader/subproject
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
esp-idf_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
|
||||||
|
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
|
||||||
|
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS
|
||||||
|
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
|
||||||
|
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
|
||||||
|
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=0
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cpack.exe
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/ctest.exe
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake-gui.exe
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE
|
||||||
|
CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Ninja
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=C:/esp/v6.0/esp-idf/components/bootloader/subproject
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//Name of CMakeLists files to read
|
||||||
|
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=41
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_TAPI
|
||||||
|
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding Git
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.53.0.windows.1()]
|
||||||
|
//ADVANCED property for variable: GIT_EXECUTABLE
|
||||||
|
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
|
||||||
31
build/bootloader/CMakeFiles/4.0.3/CMakeASMCompiler.cmake
Normal file
31
build/bootloader/CMakeFiles/4.0.3/CMakeASMCompiler.cmake
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
set(CMAKE_ASM_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_ASM_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_ASM_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_ASM_COMPILER_VERSION "")
|
||||||
|
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_ASM_LINKER_PREFERENCE 0)
|
||||||
|
set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
|
||||||
85
build/bootloader/CMakeFiles/4.0.3/CMakeCCompiler.cmake
Normal file
85
build/bootloader/CMakeFiles/4.0.3/CMakeCCompiler.cmake
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
set(CMAKE_C_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "15.2.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_C_STANDARD_LATEST "23")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
109
build/bootloader/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake
Normal file
109
build/bootloader/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "15.2.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr")
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
|
||||||
|
set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
|
||||||
|
set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe")
|
||||||
|
set(CMAKE_LINKER_LINK "")
|
||||||
|
set(CMAKE_LINKER_LLD "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
|
||||||
|
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED )
|
||||||
|
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED )
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||||
|
### Imported target for C++23 standard library
|
||||||
|
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)")
|
||||||
|
|
||||||
|
|
||||||
|
### Imported target for C++26 standard library
|
||||||
|
set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
15
build/bootloader/CMakeFiles/4.0.3/CMakeSystem.cmake
Normal file
15
build/bootloader/CMakeFiles/4.0.3/CMakeSystem.cmake
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Windows-10.0.26100")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Windows")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
|
||||||
|
|
||||||
|
include("C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/toolchain/toolchain-esp32.cmake")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Generic")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Generic")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
905
build/bootloader/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c
Normal file
905
build/bootloader/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c
Normal file
@@ -0,0 +1,905 @@
|
|||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__cray__)
|
||||||
|
# define COMPILER_ID "CrayClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
# define COMPILER_ID "Tasking"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||||
|
|
||||||
|
#elif defined(__ORANGEC__)
|
||||||
|
# define COMPILER_ID "OrangeC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# define COMPILER_ID "TIClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# if defined(__ARM_ARCH)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
|
||||||
|
# if defined(__CTC__) || defined(__CPTC__)
|
||||||
|
# define ARCHITECTURE_ID "TriCore"
|
||||||
|
|
||||||
|
# elif defined(__CMCS__)
|
||||||
|
# define ARCHITECTURE_ID "MCS"
|
||||||
|
|
||||||
|
# elif defined(__CARM__) || defined(__CPARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__CARC__)
|
||||||
|
# define ARCHITECTURE_ID "ARC"
|
||||||
|
|
||||||
|
# elif defined(__C51__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__CPCP__)
|
||||||
|
# define ARCHITECTURE_ID "PCP"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define C_STD_99 199901L
|
||||||
|
#define C_STD_11 201112L
|
||||||
|
#define C_STD_17 201710L
|
||||||
|
#define C_STD_23 202311L
|
||||||
|
|
||||||
|
#ifdef __STDC_VERSION__
|
||||||
|
# define C_STD __STDC_VERSION__
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__STDC__) && !defined(__clang__)
|
||||||
|
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||||
|
# define C_VERSION "90"
|
||||||
|
# else
|
||||||
|
# define C_VERSION
|
||||||
|
# endif
|
||||||
|
#elif C_STD > C_STD_17
|
||||||
|
# define C_VERSION "23"
|
||||||
|
#elif C_STD > C_STD_11
|
||||||
|
# define C_VERSION "17"
|
||||||
|
#elif C_STD > C_STD_99
|
||||||
|
# define C_VERSION "11"
|
||||||
|
#elif C_STD >= C_STD_99
|
||||||
|
# define C_VERSION "99"
|
||||||
|
#else
|
||||||
|
# define C_VERSION "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_standard_default =
|
||||||
|
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
BIN
build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out
Normal file
BIN
build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out
Normal file
Binary file not shown.
@@ -0,0 +1,920 @@
|
|||||||
|
/* This source file must have a .cpp extension so that all C++ compilers
|
||||||
|
recognize the extension without flags. Borland does not know .cxx for
|
||||||
|
example. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
# error "A C compiler has been selected for C++."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_CC)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_CC >= 0x5100
|
||||||
|
/* __SUNPRO_CC = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_aCC)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_aCC = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECCXX)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECCXX_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__cray__)
|
||||||
|
# define COMPILER_ID "CrayClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
# define COMPILER_ID "Tasking"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||||
|
|
||||||
|
#elif defined(__ORANGEC__)
|
||||||
|
# define COMPILER_ID "OrangeC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# define COMPILER_ID "TIClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ti__)
|
||||||
|
# if defined(__ARM_ARCH)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#elif defined(__TASKING__)
|
||||||
|
|
||||||
|
# if defined(__CTC__) || defined(__CPTC__)
|
||||||
|
# define ARCHITECTURE_ID "TriCore"
|
||||||
|
|
||||||
|
# elif defined(__CMCS__)
|
||||||
|
# define ARCHITECTURE_ID "MCS"
|
||||||
|
|
||||||
|
# elif defined(__CARM__) || defined(__CPARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__CARC__)
|
||||||
|
# define ARCHITECTURE_ID "ARC"
|
||||||
|
|
||||||
|
# elif defined(__C51__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__CPCP__)
|
||||||
|
# define ARCHITECTURE_ID "PCP"
|
||||||
|
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define CXX_STD_98 199711L
|
||||||
|
#define CXX_STD_11 201103L
|
||||||
|
#define CXX_STD_14 201402L
|
||||||
|
#define CXX_STD_17 201703L
|
||||||
|
#define CXX_STD_20 202002L
|
||||||
|
#define CXX_STD_23 202302L
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > CXX_STD_17
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# elif _MSVC_LANG > CXX_STD_14
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# elif defined(__INTEL_CXX11_MODE__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
# else
|
||||||
|
# define CXX_STD CXX_STD_98
|
||||||
|
# endif
|
||||||
|
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||||
|
# if _MSVC_LANG > __cplusplus
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||||
|
# define CXX_STD CXX_STD_20
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif defined(__INTEL_COMPILER) || defined(__PGI)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
|
||||||
|
# define CXX_STD CXX_STD_17
|
||||||
|
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
|
||||||
|
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD CXX_STD_14
|
||||||
|
# else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
# endif
|
||||||
|
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||||
|
# define CXX_STD CXX_STD_11
|
||||||
|
#else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||||
|
#if CXX_STD > CXX_STD_23
|
||||||
|
"26"
|
||||||
|
#elif CXX_STD > CXX_STD_20
|
||||||
|
"23"
|
||||||
|
#elif CXX_STD > CXX_STD_17
|
||||||
|
"20"
|
||||||
|
#elif CXX_STD > CXX_STD_14
|
||||||
|
"17"
|
||||||
|
#elif CXX_STD > CXX_STD_11
|
||||||
|
"14"
|
||||||
|
#elif CXX_STD >= CXX_STD_11
|
||||||
|
"11"
|
||||||
|
#else
|
||||||
|
"98"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
BIN
build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out
Normal file
BIN
build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out
Normal file
Binary file not shown.
1618
build/bootloader/CMakeFiles/CMakeConfigureLog.yaml
Normal file
1618
build/bootloader/CMakeFiles/CMakeConfigureLog.yaml
Normal file
File diff suppressed because it is too large
Load Diff
47
build/bootloader/CMakeFiles/InstallScripts.json
Normal file
47
build/bootloader/CMakeFiles/InstallScripts.json
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"InstallScripts" :
|
||||||
|
[
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/soc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/hal/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/log/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/freertos/cmake_install.cmake",
|
||||||
|
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/main/cmake_install.cmake"
|
||||||
|
],
|
||||||
|
"Parallel" : false
|
||||||
|
}
|
||||||
129
build/bootloader/CMakeFiles/TargetDirectories.txt
Normal file
129
build/bootloader/CMakeFiles/TargetDirectories.txt
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/menuconfig.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/config-report.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/confserver.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/save-defconfig.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/_project_elf_src.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader.elf.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/size.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/size-files.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/size-components.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/uf2.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/uf2-app.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_ld_in_preprocess.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/gen_bootloader_binary.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/gen_project_binary.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/app.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir
|
||||||
|
C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir
|
||||||
Binary file not shown.
12
build/bootloader/CMakeFiles/clean_additional.cmake
Normal file
12
build/bootloader/CMakeFiles/clean_additional.cmake
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# Additional clean files
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"bootloader.bin"
|
||||||
|
"bootloader.map"
|
||||||
|
"config\\sdkconfig.cmake"
|
||||||
|
"config\\sdkconfig.h"
|
||||||
|
"project_elf_src_esp32.c"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
1
build/bootloader/CMakeFiles/cmake.check_cache
Normal file
1
build/bootloader/CMakeFiles/cmake.check_cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
build/bootloader/CMakeFiles/git-data/HEAD
Normal file
1
build/bootloader/CMakeFiles/git-data/HEAD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
662a3be354759d9487bf4b1a629fadb766cb1800
|
||||||
50
build/bootloader/CMakeFiles/git-data/grabRef.cmake
Normal file
50
build/bootloader/CMakeFiles/git-data/grabRef.cmake
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
#
|
||||||
|
# Internal file for GetGitRevisionDescription.cmake
|
||||||
|
#
|
||||||
|
# Requires CMake 2.6 or newer (uses the 'function' command)
|
||||||
|
#
|
||||||
|
# Original Author:
|
||||||
|
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
|
||||||
|
# http://academic.cleardefinition.com
|
||||||
|
# Iowa State University HCI Graduate Program/VRAC
|
||||||
|
#
|
||||||
|
# Copyright Iowa State University 2009-2010.
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
set(HEAD_HASH)
|
||||||
|
|
||||||
|
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
|
||||||
|
|
||||||
|
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
|
||||||
|
set(GIT_DIR "C:/esp/v6.0/esp-idf/.git")
|
||||||
|
# handle git-worktree
|
||||||
|
if(EXISTS "${GIT_DIR}/commondir")
|
||||||
|
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
|
||||||
|
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
|
||||||
|
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
|
||||||
|
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
|
||||||
|
endif()
|
||||||
|
if(EXISTS "${GIT_DIR_NEW}")
|
||||||
|
set(GIT_DIR "${GIT_DIR_NEW}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
if(HEAD_CONTENTS MATCHES "ref")
|
||||||
|
# named branch
|
||||||
|
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
|
||||||
|
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
|
||||||
|
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
set(HEAD_HASH "${HEAD_REF}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# detached HEAD
|
||||||
|
configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT HEAD_HASH)
|
||||||
|
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
|
||||||
|
string(STRIP "${HEAD_HASH}" HEAD_HASH)
|
||||||
|
endif()
|
||||||
1
build/bootloader/CMakeFiles/git-data/head-ref
Normal file
1
build/bootloader/CMakeFiles/git-data/head-ref
Normal file
@@ -0,0 +1 @@
|
|||||||
|
662a3be354759d9487bf4b1a629fadb766cb1800
|
||||||
540
build/bootloader/CMakeFiles/rules.ninja
Normal file
540
build/bootloader/CMakeFiles/rules.ninja
Normal file
@@ -0,0 +1,540 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Ninja" Generator, CMake Version 4.0
|
||||||
|
|
||||||
|
# This file contains all the rules used to get the outputs files
|
||||||
|
# built from the input files.
|
||||||
|
# It is included in the main 'build.ninja'.
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Project: bootloader
|
||||||
|
# Configurations:
|
||||||
|
# =============================================================================
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER__bootloader.2eelf_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C executable.
|
||||||
|
|
||||||
|
rule C_EXECUTABLE_LINKER__bootloader.2eelf_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C executable $TARGET_FILE
|
||||||
|
rspfile = $RSP_FILE
|
||||||
|
rspfile_content = $in $LINK_PATH $LINK_LIBRARIES
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for running custom commands.
|
||||||
|
|
||||||
|
rule CUSTOM_COMMAND
|
||||||
|
command = $COMMAND
|
||||||
|
description = $DESC
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_xtensa_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_xtensa_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_soc_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_soc_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_hal_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_hal_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_gpio_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpio_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_micro-ecc_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_gpspi_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpspi_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_clock_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_clock_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_spi_flash_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_bootloader_format_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_timg_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_timg_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_wdt_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_wdt_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_uart_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_uart_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_i2s_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2s_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_ana_conv_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_ana_conv_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hal_security_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_security_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_security_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_security_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_bootloader_support_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_efuse_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_efuse_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_system_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_system_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_hw_support_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_common_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_common_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling ASM files.
|
||||||
|
|
||||||
|
rule ASM_COMPILER____idf_esp_rom_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building ASM object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_esp_rom_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_log_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_log_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER____idf_main_unscanned_
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER____idf_main_
|
||||||
|
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for re-running cmake.
|
||||||
|
|
||||||
|
rule RERUN_CMAKE
|
||||||
|
command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_TCP_to_PICS_MULTI\build\bootloader
|
||||||
|
description = Re-running CMake...
|
||||||
|
generator = 1
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for cleaning additional files.
|
||||||
|
|
||||||
|
rule CLEAN_ADDITIONAL
|
||||||
|
command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake
|
||||||
|
description = Cleaning additional files...
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for cleaning all built files.
|
||||||
|
|
||||||
|
rule CLEAN
|
||||||
|
command = C:\Espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS
|
||||||
|
description = Cleaning all built files...
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for printing all primary targets available.
|
||||||
|
|
||||||
|
rule HELP
|
||||||
|
command = C:\Espressif\tools\ninja\1.12.1\ninja.exe -t targets
|
||||||
|
description = All primary targets available:
|
||||||
|
|
||||||
BIN
build/bootloader/bootloader.bin
Normal file
BIN
build/bootloader/bootloader.bin
Normal file
Binary file not shown.
BIN
build/bootloader/bootloader.elf
Normal file
BIN
build/bootloader/bootloader.elf
Normal file
Binary file not shown.
6579
build/bootloader/bootloader.map
Normal file
6579
build/bootloader/bootloader.map
Normal file
File diff suppressed because it is too large
Load Diff
3720
build/bootloader/build.ninja
Normal file
3720
build/bootloader/build.ninja
Normal file
File diff suppressed because one or more lines are too long
66
build/bootloader/cmake_install.cmake
Normal file
66
build/bootloader/cmake_install.cmake
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader/subproject
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set path to fallback-tool for dependency-resolution.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/install_local_manifest.txt"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
||||||
|
unset(CMAKE_INST_COMP_HASH)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
656
build/bootloader/compile_commands.json
Normal file
656
build/bootloader/compile_commands.json
Normal file
File diff suppressed because one or more lines are too long
12
build/bootloader/config.env
Normal file
12
build/bootloader/config.env
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"COMPONENT_KCONFIGS": "C:/esp/v6.0/esp-idf/components/efuse/Kconfig;C:/esp/v6.0/esp-idf/components/esp_common/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig;C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig;C:/esp/v6.0/esp-idf/components/esp_security/Kconfig;C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_system/Kconfig;C:/esp/v6.0/esp-idf/components/freertos/Kconfig;C:/esp/v6.0/esp-idf/components/hal/Kconfig;C:/esp/v6.0/esp-idf/components/log/Kconfig;C:/esp/v6.0/esp-idf/components/soc/Kconfig;C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig",
|
||||||
|
"COMPONENT_KCONFIGS_PROJBUILD": "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild",
|
||||||
|
"COMPONENT_SDKCONFIG_RENAMES": "C:/esp/v6.0/esp-idf/components/bootloader/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esptool_py/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/freertos/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/hal/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/spi_flash/sdkconfig.rename",
|
||||||
|
"IDF_TARGET": "esp32",
|
||||||
|
"IDF_TOOLCHAIN": "gcc",
|
||||||
|
"IDF_VERSION": "6.0.0",
|
||||||
|
"IDF_ENV_FPGA": "",
|
||||||
|
"IDF_PATH": "C:/esp/v6.0/esp-idf",
|
||||||
|
"COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/kconfigs.in",
|
||||||
|
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/kconfigs_projbuild.in"
|
||||||
|
}
|
||||||
9979
build/bootloader/config/kconfig_menus.json
Normal file
9979
build/bootloader/config/kconfig_menus.json
Normal file
File diff suppressed because it is too large
Load Diff
723
build/bootloader/config/sdkconfig.cmake
Normal file
723
build/bootloader/config/sdkconfig.cmake
Normal file
File diff suppressed because one or more lines are too long
479
build/bootloader/config/sdkconfig.h
Normal file
479
build/bootloader/config/sdkconfig.h
Normal file
@@ -0,0 +1,479 @@
|
|||||||
|
/*
|
||||||
|
* Automatically generated file. DO NOT EDIT.
|
||||||
|
* Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
#define CONFIG_SOC_CAPS_ECO_VER_MAX 301
|
||||||
|
#define CONFIG_SOC_ADC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_DAC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_UART_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MCPWM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_GPTIMER_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PCNT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PHY_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_WIFI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_TWAI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_EFUSE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_EMAC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ULP_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_MEM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_TIMER_V1_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_I2S_I80_LCD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LCD_I80_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RMT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SDM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_GPSPI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LEDC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SUPPORT_COEXISTENCE 1
|
||||||
|
#define CONFIG_SOC_AES_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MPI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BOD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ULP_FSM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CLK_TREE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MPU_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_WDT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RNG_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5
|
||||||
|
#define CONFIG_SOC_XTAL_SUPPORT_26M 1
|
||||||
|
#define CONFIG_SOC_XTAL_SUPPORT_40M 1
|
||||||
|
#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ADC_DMA_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_ADC_PERIPH_NUM 2
|
||||||
|
#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10
|
||||||
|
#define CONFIG_SOC_ADC_ATTEN_NUM 4
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2
|
||||||
|
#define CONFIG_SOC_ADC_PATT_LEN_MAX 16
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4
|
||||||
|
#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 0
|
||||||
|
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2000000
|
||||||
|
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20000
|
||||||
|
#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9
|
||||||
|
#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12
|
||||||
|
#define CONFIG_SOC_ADC_SHARED_POWER 1
|
||||||
|
#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_IDCACHE_PER_CORE 1
|
||||||
|
#define CONFIG_SOC_CPU_CORES_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_INTR_NUM 32
|
||||||
|
#define CONFIG_SOC_CPU_HAS_FPU 1
|
||||||
|
#define CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES 1
|
||||||
|
#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2
|
||||||
|
#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x40
|
||||||
|
#define CONFIG_SOC_DAC_CHAN_NUM 2
|
||||||
|
#define CONFIG_SOC_DAC_RESOLUTION 8
|
||||||
|
#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1
|
||||||
|
#define CONFIG_SOC_GPIO_PORT 1
|
||||||
|
#define CONFIG_SOC_GPIO_PIN_COUNT 40
|
||||||
|
#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF
|
||||||
|
#define CONFIG_SOC_GPIO_IN_RANGE_MAX 39
|
||||||
|
#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 33
|
||||||
|
#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA
|
||||||
|
#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1
|
||||||
|
#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3
|
||||||
|
#define CONFIG_SOC_I2C_NUM 2
|
||||||
|
#define CONFIG_SOC_HP_I2C_NUM 2
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORT_APB 1
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1
|
||||||
|
#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1
|
||||||
|
#define CONFIG_SOC_I2C_STOP_INDEPENDENT 1
|
||||||
|
#define CONFIG_SOC_I2S_HW_VERSION_1 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_APLL 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_PDM 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1
|
||||||
|
#define CONFIG_SOC_I2S_SUPPORTS_PDM2PCM 1
|
||||||
|
#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1
|
||||||
|
#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1
|
||||||
|
#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1
|
||||||
|
#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1
|
||||||
|
#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1
|
||||||
|
#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1
|
||||||
|
#define CONFIG_SOC_LEDC_TIMER_NUM 4
|
||||||
|
#define CONFIG_SOC_LEDC_CHANNEL_NUM 8
|
||||||
|
#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20
|
||||||
|
#define CONFIG_SOC_MMU_PERIPH_NUM 2
|
||||||
|
#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3
|
||||||
|
#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000
|
||||||
|
#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8
|
||||||
|
#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64
|
||||||
|
#define CONFIG_SOC_RTCIO_PIN_COUNT 18
|
||||||
|
#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPI_PERIPH_NUM 3
|
||||||
|
#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2
|
||||||
|
#define CONFIG_SOC_SPI_MAX_CS_NUM 3
|
||||||
|
#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1
|
||||||
|
#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64
|
||||||
|
#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192
|
||||||
|
#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32
|
||||||
|
#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16
|
||||||
|
#define CONFIG_SOC_TOUCH_SENSOR_VERSION 1
|
||||||
|
#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 0
|
||||||
|
#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 9
|
||||||
|
#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM 1
|
||||||
|
#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1
|
||||||
|
#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1
|
||||||
|
#define CONFIG_SOC_UART_NUM 3
|
||||||
|
#define CONFIG_SOC_UART_HP_NUM 3
|
||||||
|
#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1
|
||||||
|
#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1
|
||||||
|
#define CONFIG_SOC_UART_FIFO_LEN 128
|
||||||
|
#define CONFIG_SOC_UART_BITRATE_MAX 5000000
|
||||||
|
#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1
|
||||||
|
#define CONFIG_SOC_SPIRAM_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1
|
||||||
|
#define CONFIG_SOC_SHA_ENDIANNESS_BE 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA1 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA256 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA384 1
|
||||||
|
#define CONFIG_SOC_SHA_SUPPORT_SHA512 1
|
||||||
|
#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4
|
||||||
|
#define CONFIG_SOC_MPI_OPERATIONS_NUM 1
|
||||||
|
#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096
|
||||||
|
#define CONFIG_SOC_AES_SUPPORT_AES_128 1
|
||||||
|
#define CONFIG_SOC_AES_SUPPORT_AES_192 1
|
||||||
|
#define CONFIG_SOC_AES_SUPPORT_AES_256 1
|
||||||
|
#define CONFIG_SOC_SECURE_BOOT_V1 1
|
||||||
|
#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1
|
||||||
|
#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32
|
||||||
|
#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1
|
||||||
|
#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1
|
||||||
|
#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1
|
||||||
|
#define CONFIG_SOC_CLK_APLL_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1
|
||||||
|
#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1
|
||||||
|
#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4 1
|
||||||
|
#define CONFIG_SOC_SDMMC_USE_IOMUX 1
|
||||||
|
#define CONFIG_SOC_SDMMC_NUM_SLOTS 2
|
||||||
|
#define CONFIG_SOC_SDMMC_DATA_WIDTH_MAX 8
|
||||||
|
#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1
|
||||||
|
#define CONFIG_SOC_WIFI_CSI_SUPPORT 1
|
||||||
|
#define CONFIG_SOC_WIFI_MESH_SUPPORT 1
|
||||||
|
#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1
|
||||||
|
#define CONFIG_SOC_WIFI_NAN_SUPPORT 1
|
||||||
|
#define CONFIG_SOC_BLE_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BLE_MESH_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BLUFI_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED 1
|
||||||
|
#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1
|
||||||
|
#define CONFIG_SOC_ULP_HAS_ADC 1
|
||||||
|
#define CONFIG_SOC_PHY_COMBO_MODULE 1
|
||||||
|
#define CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK 1
|
||||||
|
#define CONFIG_IDF_CMAKE 1
|
||||||
|
#define CONFIG_IDF_TOOLCHAIN "gcc"
|
||||||
|
#define CONFIG_IDF_TOOLCHAIN_GCC 1
|
||||||
|
#define CONFIG_IDF_TARGET_ARCH_XTENSA 1
|
||||||
|
#define CONFIG_IDF_TARGET_ARCH "xtensa"
|
||||||
|
#define CONFIG_IDF_TARGET "esp32"
|
||||||
|
#define CONFIG_IDF_INIT_VERSION "6.0.0"
|
||||||
|
#define CONFIG_IDF_TARGET_ESP32 1
|
||||||
|
#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000
|
||||||
|
#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1
|
||||||
|
#define CONFIG_APP_BUILD_GENERATE_BINARIES 1
|
||||||
|
#define CONFIG_APP_BUILD_BOOTLOADER 1
|
||||||
|
#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1
|
||||||
|
#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1
|
||||||
|
#define CONFIG_BOOTLOADER_PROJECT_VER 1
|
||||||
|
#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x1000
|
||||||
|
#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_VERSION_1 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_VERSION 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_LEVEL 3
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1
|
||||||
|
#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1
|
||||||
|
#define CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ 80
|
||||||
|
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
|
||||||
|
#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
|
||||||
|
#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1
|
||||||
|
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
|
||||||
|
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
|
||||||
|
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
|
||||||
|
#define CONFIG_SECURE_BOOT_V1_SUPPORTED 1
|
||||||
|
#define CONFIG_APP_COMPILE_TIME_DATE 1
|
||||||
|
#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9
|
||||||
|
#define CONFIG_ESP_ROM_HAS_CRC_LE 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_CRC_BE 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH 1
|
||||||
|
#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_NEWLIB 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1
|
||||||
|
#define CONFIG_ESP_ROM_USB_OTG_NUM -1
|
||||||
|
#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM -1
|
||||||
|
#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1
|
||||||
|
#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHMODE "dio"
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHFREQ "40m"
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1
|
||||||
|
#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB"
|
||||||
|
#define CONFIG_ESPTOOLPY_BEFORE_RESET 1
|
||||||
|
#define CONFIG_ESPTOOLPY_BEFORE "default-reset"
|
||||||
|
#define CONFIG_ESPTOOLPY_AFTER_RESET 1
|
||||||
|
#define CONFIG_ESPTOOLPY_AFTER "hard-reset"
|
||||||
|
#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200
|
||||||
|
#define CONFIG_PARTITION_TABLE_CUSTOM 1
|
||||||
|
#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv"
|
||||||
|
#define CONFIG_PARTITION_TABLE_FILENAME "partitions.csv"
|
||||||
|
#define CONFIG_PARTITION_TABLE_OFFSET 0x8000
|
||||||
|
#define CONFIG_PARTITION_TABLE_MD5 1
|
||||||
|
#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1
|
||||||
|
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1
|
||||||
|
#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1
|
||||||
|
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2
|
||||||
|
#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1
|
||||||
|
#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1
|
||||||
|
#define CONFIG_COMPILER_RT_LIB_GCCLIB 1
|
||||||
|
#define CONFIG_COMPILER_RT_LIB_NAME "gcc"
|
||||||
|
#define CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR 1
|
||||||
|
#define CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE 1
|
||||||
|
#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1
|
||||||
|
#define CONFIG_EFUSE_MAX_BLK_LEN 192
|
||||||
|
#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1
|
||||||
|
#define CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_ESP32_REV_MIN_0 1
|
||||||
|
#define CONFIG_ESP32_REV_MIN 0
|
||||||
|
#define CONFIG_ESP32_REV_MIN_FULL 0
|
||||||
|
#define CONFIG_ESP_REV_MIN_FULL 0
|
||||||
|
#define CONFIG_ESP32_REV_MAX_FULL 399
|
||||||
|
#define CONFIG_ESP_REV_MAX_FULL 399
|
||||||
|
#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0
|
||||||
|
#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99
|
||||||
|
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1
|
||||||
|
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1
|
||||||
|
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1
|
||||||
|
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1
|
||||||
|
#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1
|
||||||
|
#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4
|
||||||
|
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1
|
||||||
|
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4
|
||||||
|
#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1
|
||||||
|
#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000
|
||||||
|
#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1
|
||||||
|
#define CONFIG_RTC_CLK_SRC_INT_RC 1
|
||||||
|
#define CONFIG_RTC_CLK_CAL_CYCLES 1024
|
||||||
|
#define CONFIG_RTC_CLK_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_RTC_TIME_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1
|
||||||
|
#define CONFIG_XTAL_FREQ_40 1
|
||||||
|
#define CONFIG_XTAL_FREQ 40
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET 1
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1
|
||||||
|
#define CONFIG_ESP_BROWNOUT_DET_LVL 0
|
||||||
|
#define CONFIG_ESP_BROWNOUT_USE_INTR 1
|
||||||
|
#define CONFIG_ESP_INTR_IN_IRAM 1
|
||||||
|
#define CONFIG_LIBC_PICOLIBC 1
|
||||||
|
#define CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY 1
|
||||||
|
#define CONFIG_LIBC_MISC_IN_IRAM 1
|
||||||
|
#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1
|
||||||
|
#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1
|
||||||
|
#define CONFIG_LIBC_ASSERT_BUFFER_SIZE 200
|
||||||
|
#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1
|
||||||
|
#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1
|
||||||
|
#define CONFIG_ESP_CONSOLE_UART 1
|
||||||
|
#define CONFIG_ESP_CONSOLE_UART_NUM 0
|
||||||
|
#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0
|
||||||
|
#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200
|
||||||
|
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1
|
||||||
|
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160
|
||||||
|
#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0
|
||||||
|
#define CONFIG_ESP_SYSTEM_IN_IRAM 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0
|
||||||
|
#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32
|
||||||
|
#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304
|
||||||
|
#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584
|
||||||
|
#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1
|
||||||
|
#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0
|
||||||
|
#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048
|
||||||
|
#define CONFIG_ESP_INT_WDT 1
|
||||||
|
#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300
|
||||||
|
#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_EN 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_INIT 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5
|
||||||
|
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
|
||||||
|
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1
|
||||||
|
#define CONFIG_ESP_DEBUG_OCDAWARE 1
|
||||||
|
#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1
|
||||||
|
#define CONFIG_ESP_IPC_ENABLE 1
|
||||||
|
#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024
|
||||||
|
#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1
|
||||||
|
#define CONFIG_ESP_IPC_ISR_ENABLE 1
|
||||||
|
#define CONFIG_FREERTOS_HZ 100
|
||||||
|
#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1
|
||||||
|
#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1
|
||||||
|
#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536
|
||||||
|
#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16
|
||||||
|
#define CONFIG_FREERTOS_USE_TIMERS 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc"
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1
|
||||||
|
#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048
|
||||||
|
#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10
|
||||||
|
#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0
|
||||||
|
#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1
|
||||||
|
#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1
|
||||||
|
#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1
|
||||||
|
#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1
|
||||||
|
#define CONFIG_FREERTOS_ISR_STACKSIZE 1536
|
||||||
|
#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1
|
||||||
|
#define CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER 1
|
||||||
|
#define CONFIG_FREERTOS_CORETIMER_0 1
|
||||||
|
#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1
|
||||||
|
#define CONFIG_FREERTOS_PORT 1
|
||||||
|
#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF
|
||||||
|
#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1
|
||||||
|
#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1
|
||||||
|
#define CONFIG_FREERTOS_NUMBER_OF_CORES 2
|
||||||
|
#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1
|
||||||
|
#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2
|
||||||
|
#define CONFIG_HAL_GPIO_USE_ROM_IMPL 1
|
||||||
|
#define CONFIG_LOG_VERSION_1 1
|
||||||
|
#define CONFIG_LOG_VERSION 1
|
||||||
|
#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1
|
||||||
|
#define CONFIG_LOG_DEFAULT_LEVEL 3
|
||||||
|
#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1
|
||||||
|
#define CONFIG_LOG_MAXIMUM_LEVEL 3
|
||||||
|
#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1
|
||||||
|
#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31
|
||||||
|
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
|
||||||
|
#define CONFIG_LOG_MODE_TEXT_EN 1
|
||||||
|
#define CONFIG_LOG_MODE_TEXT 1
|
||||||
|
#define CONFIG_LOG_IN_IRAM 1
|
||||||
|
#define CONFIG_MMU_PAGE_SIZE_64KB 1
|
||||||
|
#define CONFIG_MMU_PAGE_MODE "64KB"
|
||||||
|
#define CONFIG_MMU_PAGE_SIZE 0x10000
|
||||||
|
#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1
|
||||||
|
#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1
|
||||||
|
#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50
|
||||||
|
#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1
|
||||||
|
#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1
|
||||||
|
#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1
|
||||||
|
#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20
|
||||||
|
#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1
|
||||||
|
#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192
|
||||||
|
#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1
|
||||||
|
#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1
|
||||||
|
#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1
|
||||||
|
#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1
|
||||||
|
#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1
|
||||||
|
#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1
|
||||||
|
#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1
|
||||||
|
#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1
|
||||||
|
#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1
|
||||||
|
#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1
|
||||||
|
|
||||||
|
/* List of deprecated options */
|
||||||
|
#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
|
||||||
|
#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
|
||||||
|
#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0
|
||||||
|
#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG
|
||||||
|
#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG
|
||||||
|
#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART
|
||||||
|
#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
|
||||||
|
#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT
|
||||||
|
#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM
|
||||||
|
#define CONFIG_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
|
||||||
|
#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
|
||||||
|
#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0
|
||||||
|
#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE
|
||||||
|
#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY
|
||||||
|
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160
|
||||||
|
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
|
||||||
|
#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT
|
||||||
|
#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES
|
||||||
|
#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC
|
||||||
|
#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC
|
||||||
|
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT
|
||||||
|
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT
|
||||||
|
#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ
|
||||||
|
#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40
|
||||||
|
#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY
|
||||||
|
#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR
|
||||||
|
#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
|
||||||
|
#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO
|
||||||
|
#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR
|
||||||
|
#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT
|
||||||
|
#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1
|
||||||
|
#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS
|
||||||
|
#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE
|
||||||
|
#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL
|
||||||
|
#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO
|
||||||
|
#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE
|
||||||
|
#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD
|
||||||
|
#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT
|
||||||
|
#define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES
|
||||||
|
#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
|
||||||
|
#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL
|
||||||
|
#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG
|
||||||
|
#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM
|
||||||
|
#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS
|
||||||
|
#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE
|
||||||
|
#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE
|
||||||
|
#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE
|
||||||
|
#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
|
||||||
|
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0
|
||||||
|
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1
|
||||||
|
#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S
|
||||||
|
#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH
|
||||||
|
#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY
|
||||||
|
#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH
|
||||||
|
#define CONFIG_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM
|
||||||
594
build/bootloader/config/sdkconfig.json
Normal file
594
build/bootloader/config/sdkconfig.json
Normal file
@@ -0,0 +1,594 @@
|
|||||||
|
{
|
||||||
|
"APP_BUILD_BOOTLOADER": true,
|
||||||
|
"APP_BUILD_GENERATE_BINARIES": true,
|
||||||
|
"APP_BUILD_TYPE_APP_2NDBOOT": true,
|
||||||
|
"APP_BUILD_TYPE_RAM": false,
|
||||||
|
"APP_BUILD_USE_FLASH_SECTIONS": true,
|
||||||
|
"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false,
|
||||||
|
"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false,
|
||||||
|
"APP_COMPILE_TIME_DATE": true,
|
||||||
|
"APP_EXCLUDE_PROJECT_NAME_VAR": false,
|
||||||
|
"APP_EXCLUDE_PROJECT_VER_VAR": false,
|
||||||
|
"APP_NO_BLOBS": false,
|
||||||
|
"APP_PROJECT_VER_FROM_CONFIG": false,
|
||||||
|
"APP_REPRODUCIBLE_BUILD": false,
|
||||||
|
"APP_RETRIEVE_LEN_ELF_SHA": 9,
|
||||||
|
"BOOTLOADER_APP_ROLLBACK_ENABLE": false,
|
||||||
|
"BOOTLOADER_APP_TEST": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false,
|
||||||
|
"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true,
|
||||||
|
"BOOTLOADER_COMPILE_TIME_DATE": true,
|
||||||
|
"BOOTLOADER_CPU_CLK_FREQ_MHZ": 80,
|
||||||
|
"BOOTLOADER_CUSTOM_RESERVE_RTC": false,
|
||||||
|
"BOOTLOADER_FACTORY_RESET": false,
|
||||||
|
"BOOTLOADER_FLASH_DC_AWARE": false,
|
||||||
|
"BOOTLOADER_FLASH_XMC_SUPPORT": true,
|
||||||
|
"BOOTLOADER_LOG_COLORS": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL": 3,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_DEBUG": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_ERROR": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_INFO": true,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_NONE": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_VERBOSE": false,
|
||||||
|
"BOOTLOADER_LOG_LEVEL_WARN": false,
|
||||||
|
"BOOTLOADER_LOG_MODE_TEXT": true,
|
||||||
|
"BOOTLOADER_LOG_MODE_TEXT_EN": true,
|
||||||
|
"BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true,
|
||||||
|
"BOOTLOADER_LOG_VERSION": 1,
|
||||||
|
"BOOTLOADER_LOG_VERSION_1": true,
|
||||||
|
"BOOTLOADER_OFFSET_IN_FLASH": 4096,
|
||||||
|
"BOOTLOADER_PROJECT_VER": 1,
|
||||||
|
"BOOTLOADER_REGION_PROTECTION_ENABLE": true,
|
||||||
|
"BOOTLOADER_RESERVE_RTC_SIZE": 0,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_ALWAYS": false,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false,
|
||||||
|
"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false,
|
||||||
|
"BOOTLOADER_VDDSDIO_BOOST_1_8V": false,
|
||||||
|
"BOOTLOADER_VDDSDIO_BOOST_1_9V": true,
|
||||||
|
"BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false,
|
||||||
|
"BOOTLOADER_WDT_ENABLE": true,
|
||||||
|
"BOOTLOADER_WDT_TIME_MS": 9000,
|
||||||
|
"COMPILER_ASSERT_NDEBUG_EVALUATE": false,
|
||||||
|
"COMPILER_CXX_EXCEPTIONS": false,
|
||||||
|
"COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false,
|
||||||
|
"COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false,
|
||||||
|
"COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true,
|
||||||
|
"COMPILER_CXX_RTTI": false,
|
||||||
|
"COMPILER_DISABLE_DEFAULT_ERRORS": false,
|
||||||
|
"COMPILER_DISABLE_GCC12_WARNINGS": false,
|
||||||
|
"COMPILER_DISABLE_GCC13_WARNINGS": false,
|
||||||
|
"COMPILER_DISABLE_GCC14_WARNINGS": false,
|
||||||
|
"COMPILER_DISABLE_GCC15_WARNINGS": false,
|
||||||
|
"COMPILER_DUMP_RTL_FILES": false,
|
||||||
|
"COMPILER_FLOAT_LIB_FROM_GCCLIB": true,
|
||||||
|
"COMPILER_HIDE_PATHS_MACROS": true,
|
||||||
|
"COMPILER_NO_MERGE_CONSTANTS": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false,
|
||||||
|
"COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2,
|
||||||
|
"COMPILER_OPTIMIZATION_CHECKS_SILENT": false,
|
||||||
|
"COMPILER_OPTIMIZATION_DEBUG": true,
|
||||||
|
"COMPILER_OPTIMIZATION_NONE": false,
|
||||||
|
"COMPILER_OPTIMIZATION_PERF": false,
|
||||||
|
"COMPILER_OPTIMIZATION_SIZE": false,
|
||||||
|
"COMPILER_ORPHAN_SECTIONS_ERROR": true,
|
||||||
|
"COMPILER_ORPHAN_SECTIONS_PLACE": false,
|
||||||
|
"COMPILER_ORPHAN_SECTIONS_WARNING": false,
|
||||||
|
"COMPILER_RT_LIB_GCCLIB": true,
|
||||||
|
"COMPILER_RT_LIB_NAME": "gcc",
|
||||||
|
"COMPILER_STACK_CHECK_MODE_ALL": false,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_NONE": true,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_NORM": false,
|
||||||
|
"COMPILER_STACK_CHECK_MODE_STRONG": false,
|
||||||
|
"COMPILER_STATIC_ANALYZER": false,
|
||||||
|
"COMPILER_WARN_WRITE_STRINGS": false,
|
||||||
|
"EFUSE_CODE_SCHEME_COMPAT_3_4": true,
|
||||||
|
"EFUSE_CODE_SCHEME_COMPAT_NONE": false,
|
||||||
|
"EFUSE_CODE_SCHEME_COMPAT_REPEAT": false,
|
||||||
|
"EFUSE_CUSTOM_TABLE": false,
|
||||||
|
"EFUSE_MAX_BLK_LEN": 192,
|
||||||
|
"EFUSE_VIRTUAL": false,
|
||||||
|
"ESP32_DISABLE_BASIC_ROM_CONSOLE": false,
|
||||||
|
"ESP32_REV_MAX_FULL": 399,
|
||||||
|
"ESP32_REV_MIN": 0,
|
||||||
|
"ESP32_REV_MIN_0": true,
|
||||||
|
"ESP32_REV_MIN_1": false,
|
||||||
|
"ESP32_REV_MIN_1_1": false,
|
||||||
|
"ESP32_REV_MIN_2": false,
|
||||||
|
"ESP32_REV_MIN_3": false,
|
||||||
|
"ESP32_REV_MIN_3_1": false,
|
||||||
|
"ESP32_REV_MIN_FULL": 0,
|
||||||
|
"ESP32_TRACEMEM_RESERVE_DRAM": 0,
|
||||||
|
"ESP32_TRAX": false,
|
||||||
|
"ESP32_UNIVERSAL_MAC_ADDRESSES": 4,
|
||||||
|
"ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
|
||||||
|
"ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false,
|
||||||
|
"ESP32_USE_FIXED_STATIC_RAM_SIZE": false,
|
||||||
|
"ESPTOOLPY_AFTER": "hard-reset",
|
||||||
|
"ESPTOOLPY_AFTER_NORESET": false,
|
||||||
|
"ESPTOOLPY_AFTER_RESET": true,
|
||||||
|
"ESPTOOLPY_BEFORE": "default-reset",
|
||||||
|
"ESPTOOLPY_BEFORE_NORESET": false,
|
||||||
|
"ESPTOOLPY_BEFORE_RESET": true,
|
||||||
|
"ESPTOOLPY_FLASHFREQ": "40m",
|
||||||
|
"ESPTOOLPY_FLASHFREQ_20M": false,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_26M": false,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_40M": true,
|
||||||
|
"ESPTOOLPY_FLASHFREQ_80M": false,
|
||||||
|
"ESPTOOLPY_FLASHMODE": "dio",
|
||||||
|
"ESPTOOLPY_FLASHMODE_DIO": true,
|
||||||
|
"ESPTOOLPY_FLASHMODE_DOUT": false,
|
||||||
|
"ESPTOOLPY_FLASHMODE_QIO": false,
|
||||||
|
"ESPTOOLPY_FLASHMODE_QOUT": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE": "2MB",
|
||||||
|
"ESPTOOLPY_FLASHSIZE_128MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_16MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_1MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_2MB": true,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_32MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_4MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_64MB": false,
|
||||||
|
"ESPTOOLPY_FLASHSIZE_8MB": false,
|
||||||
|
"ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true,
|
||||||
|
"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false,
|
||||||
|
"ESPTOOLPY_MONITOR_BAUD": 115200,
|
||||||
|
"ESPTOOLPY_NO_STUB": false,
|
||||||
|
"ESP_BROWNOUT_DET": true,
|
||||||
|
"ESP_BROWNOUT_DET_LVL": 0,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_0": true,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_1": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_2": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_3": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_4": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_5": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_6": false,
|
||||||
|
"ESP_BROWNOUT_DET_LVL_SEL_7": false,
|
||||||
|
"ESP_BROWNOUT_USE_INTR": true,
|
||||||
|
"ESP_CONSOLE_NONE": false,
|
||||||
|
"ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0,
|
||||||
|
"ESP_CONSOLE_UART": true,
|
||||||
|
"ESP_CONSOLE_UART_BAUDRATE": 115200,
|
||||||
|
"ESP_CONSOLE_UART_CUSTOM": false,
|
||||||
|
"ESP_CONSOLE_UART_DEFAULT": true,
|
||||||
|
"ESP_CONSOLE_UART_NUM": 0,
|
||||||
|
"ESP_DEBUG_OCDAWARE": true,
|
||||||
|
"ESP_DEBUG_STUBS_ENABLE": false,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ": 160,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_160": true,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_240": false,
|
||||||
|
"ESP_DEFAULT_CPU_FREQ_MHZ_80": false,
|
||||||
|
"ESP_EFUSE_BLOCK_REV_MAX_FULL": 99,
|
||||||
|
"ESP_EFUSE_BLOCK_REV_MIN_FULL": 0,
|
||||||
|
"ESP_ERR_TO_NAME_LOOKUP": true,
|
||||||
|
"ESP_HW_SUPPORT_FUNC_IN_IRAM": true,
|
||||||
|
"ESP_INTR_IN_IRAM": true,
|
||||||
|
"ESP_INT_WDT": true,
|
||||||
|
"ESP_INT_WDT_CHECK_CPU1": true,
|
||||||
|
"ESP_INT_WDT_TIMEOUT_MS": 300,
|
||||||
|
"ESP_IPC_ENABLE": true,
|
||||||
|
"ESP_IPC_ISR_ENABLE": true,
|
||||||
|
"ESP_IPC_TASK_STACK_SIZE": 1024,
|
||||||
|
"ESP_IPC_USES_CALLERS_PRIORITY": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_BT": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_ETH": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true,
|
||||||
|
"ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true,
|
||||||
|
"ESP_MAC_IGNORE_MAC_CRC_ERROR": false,
|
||||||
|
"ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4,
|
||||||
|
"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
|
||||||
|
"ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY": 0,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_CPU0": true,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_CPU1": false,
|
||||||
|
"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false,
|
||||||
|
"ESP_MAIN_TASK_STACK_SIZE": 3584,
|
||||||
|
"ESP_MINIMAL_SHARED_STACK_SIZE": 2048,
|
||||||
|
"ESP_PANIC_HANDLER_IRAM": false,
|
||||||
|
"ESP_PERIPH_CTRL_FUNC_IN_IRAM": true,
|
||||||
|
"ESP_REGI2C_CTRL_FUNC_IN_IRAM": true,
|
||||||
|
"ESP_REV_MAX_FULL": 399,
|
||||||
|
"ESP_REV_MIN_FULL": 0,
|
||||||
|
"ESP_ROM_HAS_CRC_BE": true,
|
||||||
|
"ESP_ROM_HAS_CRC_LE": true,
|
||||||
|
"ESP_ROM_HAS_JPEG_DECODE": true,
|
||||||
|
"ESP_ROM_HAS_MZ_CRC32": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB_32BIT_TIME": true,
|
||||||
|
"ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true,
|
||||||
|
"ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true,
|
||||||
|
"ESP_ROM_HAS_SW_FLOAT": true,
|
||||||
|
"ESP_ROM_HAS_UART_BUF_SWITCH": true,
|
||||||
|
"ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true,
|
||||||
|
"ESP_ROM_PRINT_IN_IRAM": true,
|
||||||
|
"ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true,
|
||||||
|
"ESP_ROM_USB_OTG_NUM": -1,
|
||||||
|
"ESP_ROM_USB_SERIAL_DEVICE_NUM": -1,
|
||||||
|
"ESP_SLEEP_CACHE_SAFE_ASSERTION": false,
|
||||||
|
"ESP_SLEEP_DEBUG": false,
|
||||||
|
"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true,
|
||||||
|
"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true,
|
||||||
|
"ESP_SLEEP_GPIO_RESET_WORKAROUND": false,
|
||||||
|
"ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false,
|
||||||
|
"ESP_SLEEP_POWER_DOWN_FLASH": false,
|
||||||
|
"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true,
|
||||||
|
"ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000,
|
||||||
|
"ESP_SYSTEM_CHECK_INT_LEVEL_4": true,
|
||||||
|
"ESP_SYSTEM_CHECK_INT_LEVEL_5": false,
|
||||||
|
"ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false,
|
||||||
|
"ESP_SYSTEM_EVENT_QUEUE_SIZE": 32,
|
||||||
|
"ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304,
|
||||||
|
"ESP_SYSTEM_IN_IRAM": true,
|
||||||
|
"ESP_SYSTEM_PANIC_PRINT_HALT": false,
|
||||||
|
"ESP_SYSTEM_PANIC_PRINT_REBOOT": true,
|
||||||
|
"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0,
|
||||||
|
"ESP_SYSTEM_PANIC_SILENT_REBOOT": false,
|
||||||
|
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true,
|
||||||
|
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true,
|
||||||
|
"ESP_TASK_WDT_EN": true,
|
||||||
|
"ESP_TASK_WDT_INIT": true,
|
||||||
|
"ESP_TASK_WDT_PANIC": false,
|
||||||
|
"ESP_TASK_WDT_TIMEOUT_S": 5,
|
||||||
|
"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true,
|
||||||
|
"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_CANARY": true,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_NONE": false,
|
||||||
|
"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false,
|
||||||
|
"FREERTOS_CORETIMER_0": true,
|
||||||
|
"FREERTOS_CORETIMER_1": false,
|
||||||
|
"FREERTOS_DEBUG_OCDAWARE": true,
|
||||||
|
"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false,
|
||||||
|
"FREERTOS_FPU_IN_ISR": false,
|
||||||
|
"FREERTOS_GENERATE_RUN_TIME_STATS": false,
|
||||||
|
"FREERTOS_HZ": 100,
|
||||||
|
"FREERTOS_IDLE_TASK_STACKSIZE": 1536,
|
||||||
|
"FREERTOS_INTERRUPT_BACKTRACE": true,
|
||||||
|
"FREERTOS_IN_IRAM": false,
|
||||||
|
"FREERTOS_ISR_STACKSIZE": 1536,
|
||||||
|
"FREERTOS_MAX_TASK_NAME_LEN": 16,
|
||||||
|
"FREERTOS_NO_AFFINITY": 2147483647,
|
||||||
|
"FREERTOS_NUMBER_OF_CORES": 2,
|
||||||
|
"FREERTOS_PORT": true,
|
||||||
|
"FREERTOS_QUEUE_REGISTRY_SIZE": 0,
|
||||||
|
"FREERTOS_SMP": false,
|
||||||
|
"FREERTOS_SUPPORT_STATIC_ALLOCATION": true,
|
||||||
|
"FREERTOS_SYSTICK_USES_CCOUNT": true,
|
||||||
|
"FREERTOS_TASK_FUNCTION_WRAPPER": true,
|
||||||
|
"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1,
|
||||||
|
"FREERTOS_TASK_PRE_DELETION_HOOK": false,
|
||||||
|
"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1,
|
||||||
|
"FREERTOS_TICK_SUPPORT_CORETIMER": true,
|
||||||
|
"FREERTOS_TIMER_QUEUE_LENGTH": 10,
|
||||||
|
"FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647,
|
||||||
|
"FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc",
|
||||||
|
"FREERTOS_TIMER_TASK_AFFINITY_CPU0": false,
|
||||||
|
"FREERTOS_TIMER_TASK_AFFINITY_CPU1": false,
|
||||||
|
"FREERTOS_TIMER_TASK_NO_AFFINITY": true,
|
||||||
|
"FREERTOS_TIMER_TASK_PRIORITY": 1,
|
||||||
|
"FREERTOS_TIMER_TASK_STACK_DEPTH": 2048,
|
||||||
|
"FREERTOS_TLSP_DELETION_CALLBACKS": true,
|
||||||
|
"FREERTOS_UNICORE": false,
|
||||||
|
"FREERTOS_USE_APPLICATION_TASK_TAG": false,
|
||||||
|
"FREERTOS_USE_IDLE_HOOK": false,
|
||||||
|
"FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false,
|
||||||
|
"FREERTOS_USE_TICK_HOOK": false,
|
||||||
|
"FREERTOS_USE_TIMERS": true,
|
||||||
|
"FREERTOS_USE_TRACE_FACILITY": false,
|
||||||
|
"FREERTOS_WATCHPOINT_END_OF_STACK": false,
|
||||||
|
"HAL_ASSERTION_DISABLE": false,
|
||||||
|
"HAL_ASSERTION_ENABLE": false,
|
||||||
|
"HAL_ASSERTION_EQUALS_SYSTEM": true,
|
||||||
|
"HAL_ASSERTION_SILENT": false,
|
||||||
|
"HAL_DEFAULT_ASSERTION_LEVEL": 2,
|
||||||
|
"HAL_GPIO_USE_ROM_IMPL": true,
|
||||||
|
"IDF_CMAKE": true,
|
||||||
|
"IDF_EXPERIMENTAL_FEATURES": false,
|
||||||
|
"IDF_FIRMWARE_CHIP_ID": 0,
|
||||||
|
"IDF_INIT_VERSION": "6.0.0",
|
||||||
|
"IDF_TARGET": "esp32",
|
||||||
|
"IDF_TARGET_ARCH": "xtensa",
|
||||||
|
"IDF_TARGET_ARCH_XTENSA": true,
|
||||||
|
"IDF_TARGET_ESP32": true,
|
||||||
|
"IDF_TOOLCHAIN": "gcc",
|
||||||
|
"IDF_TOOLCHAIN_GCC": true,
|
||||||
|
"LIBC_ASSERT_BUFFER_SIZE": 200,
|
||||||
|
"LIBC_LOCKS_PLACE_IN_IRAM": true,
|
||||||
|
"LIBC_MISC_IN_IRAM": true,
|
||||||
|
"LIBC_NEWLIB": false,
|
||||||
|
"LIBC_PICOLIBC": true,
|
||||||
|
"LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true,
|
||||||
|
"LIBC_TIME_SYSCALL_USE_HRT": false,
|
||||||
|
"LIBC_TIME_SYSCALL_USE_NONE": false,
|
||||||
|
"LIBC_TIME_SYSCALL_USE_RTC": false,
|
||||||
|
"LIBC_TIME_SYSCALL_USE_RTC_HRT": true,
|
||||||
|
"LOG_COLORS": false,
|
||||||
|
"LOG_DEFAULT_LEVEL": 3,
|
||||||
|
"LOG_DEFAULT_LEVEL_DEBUG": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_ERROR": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_INFO": true,
|
||||||
|
"LOG_DEFAULT_LEVEL_NONE": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_VERBOSE": false,
|
||||||
|
"LOG_DEFAULT_LEVEL_WARN": false,
|
||||||
|
"LOG_DYNAMIC_LEVEL_CONTROL": true,
|
||||||
|
"LOG_IN_IRAM": true,
|
||||||
|
"LOG_MASTER_LEVEL": false,
|
||||||
|
"LOG_MAXIMUM_EQUALS_DEFAULT": true,
|
||||||
|
"LOG_MAXIMUM_LEVEL": 3,
|
||||||
|
"LOG_MAXIMUM_LEVEL_DEBUG": false,
|
||||||
|
"LOG_MAXIMUM_LEVEL_VERBOSE": false,
|
||||||
|
"LOG_MODE_TEXT": true,
|
||||||
|
"LOG_MODE_TEXT_EN": true,
|
||||||
|
"LOG_TAG_LEVEL_CACHE_ARRAY": false,
|
||||||
|
"LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_LINKED_LIST": false,
|
||||||
|
"LOG_TAG_LEVEL_IMPL_NONE": false,
|
||||||
|
"LOG_TIMESTAMP_SOURCE_RTOS": true,
|
||||||
|
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
|
||||||
|
"LOG_VERSION": 1,
|
||||||
|
"LOG_VERSION_1": true,
|
||||||
|
"LOG_VERSION_2": false,
|
||||||
|
"MMU_PAGE_MODE": "64KB",
|
||||||
|
"MMU_PAGE_SIZE": 65536,
|
||||||
|
"MMU_PAGE_SIZE_64KB": true,
|
||||||
|
"PARTITION_TABLE_CUSTOM": true,
|
||||||
|
"PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv",
|
||||||
|
"PARTITION_TABLE_FILENAME": "partitions.csv",
|
||||||
|
"PARTITION_TABLE_MD5": true,
|
||||||
|
"PARTITION_TABLE_OFFSET": 32768,
|
||||||
|
"PARTITION_TABLE_SINGLE_APP": false,
|
||||||
|
"PARTITION_TABLE_SINGLE_APP_LARGE": false,
|
||||||
|
"PARTITION_TABLE_TWO_OTA": false,
|
||||||
|
"PARTITION_TABLE_TWO_OTA_LARGE": false,
|
||||||
|
"RTC_CLK_CAL_CYCLES": 1024,
|
||||||
|
"RTC_CLK_FUNC_IN_IRAM": true,
|
||||||
|
"RTC_CLK_SRC_EXT_CRYS": false,
|
||||||
|
"RTC_CLK_SRC_EXT_OSC": false,
|
||||||
|
"RTC_CLK_SRC_INT_8MD256": false,
|
||||||
|
"RTC_CLK_SRC_INT_RC": true,
|
||||||
|
"RTC_TIME_FUNC_IN_IRAM": true,
|
||||||
|
"SECURE_BOOT": false,
|
||||||
|
"SECURE_BOOT_V1_SUPPORTED": true,
|
||||||
|
"SECURE_FLASH_ENC_ENABLED": false,
|
||||||
|
"SECURE_SIGNED_APPS_NO_SECURE_BOOT": false,
|
||||||
|
"SOC_ADC_ATTEN_NUM": 4,
|
||||||
|
"SOC_ADC_DIGI_CONTROLLER_NUM": 2,
|
||||||
|
"SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4,
|
||||||
|
"SOC_ADC_DIGI_MAX_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_DIGI_MIN_BITWIDTH": 9,
|
||||||
|
"SOC_ADC_DIGI_MONITOR_NUM": 0,
|
||||||
|
"SOC_ADC_DIGI_RESULT_BYTES": 2,
|
||||||
|
"SOC_ADC_DIG_CTRL_SUPPORTED": true,
|
||||||
|
"SOC_ADC_DMA_SUPPORTED": true,
|
||||||
|
"SOC_ADC_MAX_CHANNEL_NUM": 10,
|
||||||
|
"SOC_ADC_PATT_LEN_MAX": 16,
|
||||||
|
"SOC_ADC_PERIPH_NUM": 2,
|
||||||
|
"SOC_ADC_RTC_CTRL_SUPPORTED": true,
|
||||||
|
"SOC_ADC_RTC_MAX_BITWIDTH": 12,
|
||||||
|
"SOC_ADC_RTC_MIN_BITWIDTH": 9,
|
||||||
|
"SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2000000,
|
||||||
|
"SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20000,
|
||||||
|
"SOC_ADC_SHARED_POWER": true,
|
||||||
|
"SOC_ADC_SUPPORTED": true,
|
||||||
|
"SOC_AES_SUPPORTED": true,
|
||||||
|
"SOC_AES_SUPPORT_AES_128": true,
|
||||||
|
"SOC_AES_SUPPORT_AES_192": true,
|
||||||
|
"SOC_AES_SUPPORT_AES_256": true,
|
||||||
|
"SOC_BLE_MESH_SUPPORTED": true,
|
||||||
|
"SOC_BLE_MULTI_CONN_OPTIMIZATION": true,
|
||||||
|
"SOC_BLE_SUPPORTED": true,
|
||||||
|
"SOC_BLUFI_SUPPORTED": true,
|
||||||
|
"SOC_BOD_SUPPORTED": true,
|
||||||
|
"SOC_BROWNOUT_RESET_SUPPORTED": true,
|
||||||
|
"SOC_BT_CLASSIC_SUPPORTED": true,
|
||||||
|
"SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED": true,
|
||||||
|
"SOC_BT_SUPPORTED": true,
|
||||||
|
"SOC_CAPS_ECO_VER_MAX": 301,
|
||||||
|
"SOC_CCOMP_TIMER_SUPPORTED": true,
|
||||||
|
"SOC_CLK_APLL_SUPPORTED": true,
|
||||||
|
"SOC_CLK_LP_FAST_SUPPORT_XTAL_D4": true,
|
||||||
|
"SOC_CLK_RC_FAST_D256_SUPPORTED": true,
|
||||||
|
"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true,
|
||||||
|
"SOC_CLK_TREE_SUPPORTED": true,
|
||||||
|
"SOC_CLK_XTAL32K_SUPPORTED": true,
|
||||||
|
"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true,
|
||||||
|
"SOC_CPU_BREAKPOINTS_NUM": 2,
|
||||||
|
"SOC_CPU_CORES_NUM": 2,
|
||||||
|
"SOC_CPU_HAS_FPU": true,
|
||||||
|
"SOC_CPU_INTR_NUM": 32,
|
||||||
|
"SOC_CPU_WATCHPOINTS_NUM": 2,
|
||||||
|
"SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64,
|
||||||
|
"SOC_DAC_CHAN_NUM": 2,
|
||||||
|
"SOC_DAC_DMA_16BIT_ALIGN": true,
|
||||||
|
"SOC_DAC_RESOLUTION": 8,
|
||||||
|
"SOC_DAC_SUPPORTED": true,
|
||||||
|
"SOC_DEEP_SLEEP_SUPPORTED": true,
|
||||||
|
"SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5,
|
||||||
|
"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 1,
|
||||||
|
"SOC_EFUSE_SUPPORTED": true,
|
||||||
|
"SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK": true,
|
||||||
|
"SOC_EMAC_SUPPORTED": true,
|
||||||
|
"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32,
|
||||||
|
"SOC_FLASH_ENC_SUPPORTED": true,
|
||||||
|
"SOC_GPIO_CLOCKOUT_BY_IO_MUX": true,
|
||||||
|
"SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3,
|
||||||
|
"SOC_GPIO_IN_RANGE_MAX": 39,
|
||||||
|
"SOC_GPIO_OUT_RANGE_MAX": 33,
|
||||||
|
"SOC_GPIO_PIN_COUNT": 40,
|
||||||
|
"SOC_GPIO_PORT": 1,
|
||||||
|
"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178,
|
||||||
|
"SOC_GPIO_VALID_GPIO_MASK": 1099511627775,
|
||||||
|
"SOC_GPSPI_SUPPORTED": true,
|
||||||
|
"SOC_GPTIMER_SUPPORTED": true,
|
||||||
|
"SOC_HP_CPU_HAS_MULTIPLE_CORES": true,
|
||||||
|
"SOC_HP_I2C_NUM": 2,
|
||||||
|
"SOC_I2C_NUM": 2,
|
||||||
|
"SOC_I2C_STOP_INDEPENDENT": true,
|
||||||
|
"SOC_I2C_SUPPORTED": true,
|
||||||
|
"SOC_I2C_SUPPORT_10BIT_ADDR": true,
|
||||||
|
"SOC_I2C_SUPPORT_APB": true,
|
||||||
|
"SOC_I2C_SUPPORT_SLAVE": true,
|
||||||
|
"SOC_I2S_HW_VERSION_1": true,
|
||||||
|
"SOC_I2S_I80_LCD_SUPPORTED": true,
|
||||||
|
"SOC_I2S_PDM_MAX_RX_LINES": 1,
|
||||||
|
"SOC_I2S_PDM_MAX_TX_LINES": 1,
|
||||||
|
"SOC_I2S_SUPPORTED": true,
|
||||||
|
"SOC_I2S_SUPPORTS_APLL": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PCM2PDM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM2PCM": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM_RX": true,
|
||||||
|
"SOC_I2S_SUPPORTS_PDM_TX": true,
|
||||||
|
"SOC_IDCACHE_PER_CORE": true,
|
||||||
|
"SOC_LCD_I80_SUPPORTED": true,
|
||||||
|
"SOC_LEDC_CHANNEL_NUM": 8,
|
||||||
|
"SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true,
|
||||||
|
"SOC_LEDC_SUPPORTED": true,
|
||||||
|
"SOC_LEDC_SUPPORT_APB_CLOCK": true,
|
||||||
|
"SOC_LEDC_SUPPORT_HS_MODE": true,
|
||||||
|
"SOC_LEDC_SUPPORT_REF_TICK": true,
|
||||||
|
"SOC_LEDC_TIMER_BIT_WIDTH": 20,
|
||||||
|
"SOC_LEDC_TIMER_NUM": 4,
|
||||||
|
"SOC_LIGHT_SLEEP_SUPPORTED": true,
|
||||||
|
"SOC_LP_PERIPH_SHARE_INTERRUPT": true,
|
||||||
|
"SOC_LP_TIMER_BIT_WIDTH_HI": 16,
|
||||||
|
"SOC_LP_TIMER_BIT_WIDTH_LO": 32,
|
||||||
|
"SOC_MCPWM_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true,
|
||||||
|
"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true,
|
||||||
|
"SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3,
|
||||||
|
"SOC_MMU_PERIPH_NUM": 2,
|
||||||
|
"SOC_MPI_MEM_BLOCKS_NUM": 4,
|
||||||
|
"SOC_MPI_OPERATIONS_NUM": 1,
|
||||||
|
"SOC_MPI_SUPPORTED": true,
|
||||||
|
"SOC_MPU_MIN_REGION_SIZE": 536870912,
|
||||||
|
"SOC_MPU_REGIONS_MAX_NUM": 8,
|
||||||
|
"SOC_MPU_SUPPORTED": true,
|
||||||
|
"SOC_PCNT_SUPPORTED": true,
|
||||||
|
"SOC_PHY_COMBO_MODULE": true,
|
||||||
|
"SOC_PHY_DIG_REGS_MEM_SIZE": 21,
|
||||||
|
"SOC_PHY_SUPPORTED": true,
|
||||||
|
"SOC_PM_MODEM_PD_BY_SW": true,
|
||||||
|
"SOC_PM_SUPPORTED": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT0_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT1_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_EXT_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_MODEM_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RC_FAST_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RTC_PERIPH_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true,
|
||||||
|
"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true,
|
||||||
|
"SOC_PM_SUPPORT_VDDSDIO_PD": true,
|
||||||
|
"SOC_RMT_MEM_WORDS_PER_CHANNEL": 64,
|
||||||
|
"SOC_RMT_SUPPORTED": true,
|
||||||
|
"SOC_RNG_SUPPORTED": true,
|
||||||
|
"SOC_RSA_MAX_BIT_LEN": 4096,
|
||||||
|
"SOC_RTCIO_HOLD_SUPPORTED": true,
|
||||||
|
"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true,
|
||||||
|
"SOC_RTCIO_PIN_COUNT": 18,
|
||||||
|
"SOC_RTCIO_WAKE_SUPPORTED": true,
|
||||||
|
"SOC_RTC_FAST_MEM_SUPPORTED": true,
|
||||||
|
"SOC_RTC_MEM_SUPPORTED": true,
|
||||||
|
"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true,
|
||||||
|
"SOC_RTC_SLOW_MEM_SUPPORTED": true,
|
||||||
|
"SOC_RTC_TIMER_V1_SUPPORTED": true,
|
||||||
|
"SOC_SDIO_SLAVE_SUPPORTED": true,
|
||||||
|
"SOC_SDMMC_DATA_WIDTH_MAX": 8,
|
||||||
|
"SOC_SDMMC_HOST_SUPPORTED": true,
|
||||||
|
"SOC_SDMMC_NUM_SLOTS": 2,
|
||||||
|
"SOC_SDMMC_USE_IOMUX": true,
|
||||||
|
"SOC_SDM_SUPPORTED": true,
|
||||||
|
"SOC_SECURE_BOOT_SUPPORTED": true,
|
||||||
|
"SOC_SECURE_BOOT_V1": true,
|
||||||
|
"SOC_SHARED_IDCACHE_SUPPORTED": true,
|
||||||
|
"SOC_SHA_ENDIANNESS_BE": true,
|
||||||
|
"SOC_SHA_SUPPORTED": true,
|
||||||
|
"SOC_SHA_SUPPORT_PARALLEL_ENG": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA1": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA256": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA384": true,
|
||||||
|
"SOC_SHA_SUPPORT_SHA512": true,
|
||||||
|
"SOC_SPIRAM_SUPPORTED": true,
|
||||||
|
"SOC_SPI_AS_CS_SUPPORTED": true,
|
||||||
|
"SOC_SPI_DMA_CHAN_NUM": 2,
|
||||||
|
"SOC_SPI_FLASH_SUPPORTED": true,
|
||||||
|
"SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true,
|
||||||
|
"SOC_SPI_MAXIMUM_BUFFER_SIZE": 64,
|
||||||
|
"SOC_SPI_MAX_CS_NUM": 3,
|
||||||
|
"SOC_SPI_MAX_PRE_DIVIDER": 8192,
|
||||||
|
"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true,
|
||||||
|
"SOC_SPI_PERIPH_NUM": 3,
|
||||||
|
"SOC_SPI_SUPPORT_CLK_APB": true,
|
||||||
|
"SOC_SUPPORT_COEXISTENCE": true,
|
||||||
|
"SOC_TOUCH_MAX_CHAN_ID": 9,
|
||||||
|
"SOC_TOUCH_MIN_CHAN_ID": 0,
|
||||||
|
"SOC_TOUCH_SAMPLE_CFG_NUM": 1,
|
||||||
|
"SOC_TOUCH_SENSOR_SUPPORTED": true,
|
||||||
|
"SOC_TOUCH_SENSOR_VERSION": 1,
|
||||||
|
"SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true,
|
||||||
|
"SOC_TWAI_CONTROLLER_NUM": 1,
|
||||||
|
"SOC_TWAI_MASK_FILTER_NUM": 1,
|
||||||
|
"SOC_TWAI_SUPPORTED": true,
|
||||||
|
"SOC_UART_BITRATE_MAX": 5000000,
|
||||||
|
"SOC_UART_FIFO_LEN": 128,
|
||||||
|
"SOC_UART_HP_NUM": 3,
|
||||||
|
"SOC_UART_NUM": 3,
|
||||||
|
"SOC_UART_SUPPORTED": true,
|
||||||
|
"SOC_UART_SUPPORT_APB_CLK": true,
|
||||||
|
"SOC_UART_SUPPORT_REF_TICK": true,
|
||||||
|
"SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true,
|
||||||
|
"SOC_ULP_FSM_SUPPORTED": true,
|
||||||
|
"SOC_ULP_HAS_ADC": true,
|
||||||
|
"SOC_ULP_SUPPORTED": true,
|
||||||
|
"SOC_WDT_SUPPORTED": true,
|
||||||
|
"SOC_WIFI_CSI_SUPPORT": true,
|
||||||
|
"SOC_WIFI_MESH_SUPPORT": true,
|
||||||
|
"SOC_WIFI_NAN_SUPPORT": true,
|
||||||
|
"SOC_WIFI_SUPPORTED": true,
|
||||||
|
"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true,
|
||||||
|
"SOC_WIFI_WAPI_SUPPORT": true,
|
||||||
|
"SOC_XTAL_SUPPORT_26M": true,
|
||||||
|
"SOC_XTAL_SUPPORT_40M": true,
|
||||||
|
"SPI_FLASH_BROWNOUT_RESET": true,
|
||||||
|
"SPI_FLASH_BROWNOUT_RESET_XMC": true,
|
||||||
|
"SPI_FLASH_BYPASS_BLOCK_ERASE": false,
|
||||||
|
"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_ABORTS": true,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false,
|
||||||
|
"SPI_FLASH_DANGEROUS_WRITE_FAILS": false,
|
||||||
|
"SPI_FLASH_ENABLE_COUNTERS": false,
|
||||||
|
"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true,
|
||||||
|
"SPI_FLASH_ERASE_YIELD_DURATION_MS": 20,
|
||||||
|
"SPI_FLASH_ERASE_YIELD_TICKS": 1,
|
||||||
|
"SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false,
|
||||||
|
"SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false,
|
||||||
|
"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false,
|
||||||
|
"SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true,
|
||||||
|
"SPI_FLASH_SHARE_SPI1_BUS": false,
|
||||||
|
"SPI_FLASH_SIZE_OVERRIDE": false,
|
||||||
|
"SPI_FLASH_SUPPORT_BOYA_CHIP": false,
|
||||||
|
"SPI_FLASH_SUPPORT_GD_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_ISSI_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_MXIC_CHIP": true,
|
||||||
|
"SPI_FLASH_SUPPORT_TH_CHIP": false,
|
||||||
|
"SPI_FLASH_SUPPORT_WINBOND_CHIP": true,
|
||||||
|
"SPI_FLASH_SUSPEND_TSUS_VAL_US": 50,
|
||||||
|
"SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true,
|
||||||
|
"SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true,
|
||||||
|
"SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true,
|
||||||
|
"SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true,
|
||||||
|
"SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true,
|
||||||
|
"SPI_FLASH_VERIFY_WRITE": false,
|
||||||
|
"SPI_FLASH_WRITE_CHUNK_SIZE": 8192,
|
||||||
|
"SPI_FLASH_YIELD_DURING_ERASE": true,
|
||||||
|
"XTAL_FREQ": 40,
|
||||||
|
"XTAL_FREQ_26": false,
|
||||||
|
"XTAL_FREQ_32": false,
|
||||||
|
"XTAL_FREQ_40": true,
|
||||||
|
"XTAL_FREQ_AUTO": false
|
||||||
|
}
|
||||||
45
build/bootloader/esp-idf/bootloader/cmake_install.cmake
Normal file
45
build/bootloader/esp-idf/bootloader/cmake_install.cmake
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set path to fallback-tool for dependency-resolution.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/install_local_manifest.txt"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
endif()
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user