This commit is contained in:
Daniel Béreš 2020-03-20 18:01:25 +01:00
parent e182d8e48b
commit 771e052181
825 changed files with 253639 additions and 7 deletions

View File

@ -1,7 +0,0 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
]
}

13
CMakeLists.txt Normal file
View File

@ -0,0 +1,13 @@
# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
set(PROJECT_VER "0.1.0.1")
set(EXTRA_COMPONENT_DIRS components/lv_examples
components/lvgl
components/lvgl_esp32_drivers/lvgl_tft
components/lvgl_esp32_drivers/lvgl_touch
components/lvgl_esp32_drivers)
project(bakalarka)

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
#
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
# project subdirectory.
#
PROJECT_NAME := console
EXTRA_COMPONENT_DIRS := components/lv_port_esp32/components/lv_examples \
components/lv_port_esp32/components/lvgl \
components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft \
components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch \
components/lv_port_esp32/components/lvgl_esp32_drivers \
include $(IDF_PATH)/make/project.mk

151
README.md Normal file
View File

@ -0,0 +1,151 @@
# Console Example
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example illustrates the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html#console) to create an interactive shell on the ESP32. The interactive shell running on the ESP32 can then be controlled/interacted with over a serial port (UART).
The interactive shell implemented in this example contains a wide variety of commands, and can act as a basis for applications that require a command-line interface (CLI).
## How to use example
### Hardware Required
This example should be able to run on any commonly available ESP32 development board.
### Configure the project
```
idf.py menuconfig
```
* Enable/disable `Example Configuration > Store command history in flash` as necessary
### Build and Flash
Build the project and flash it to the board, then run monitor tool to view serial output:
```
idf.py -p PORT flash monitor
```
(Replace PORT with the name of the serial port to use.)
(To exit the serial monitor, type ``Ctrl-]``.)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
## Example Output
Enter the `help` command get a full list of all available commands. The following is a sample session of the Console Example where a variety of commands provided by the Console Example are used. Note that GPIO15 is connected to GND to remove the boot log output.
```
This is an example of ESP-IDF console component.
Type 'help' to get the list of commands.
Use UP/DOWN arrows to navigate through command history.
Press TAB when typing command name to auto-complete.
[esp32]> help
help
Print the list of registered commands
free
Get the total size of heap memory available
restart
Restart the program
deep_sleep [-t <t>] [--io=<n>] [--io_level=<0|1>]
Enter deep sleep mode. Two wakeup modes are supported: timer and GPIO. If no
wakeup option is specified, will sleep indefinitely.
-t, --time=<t> Wake up time, ms
--io=<n> If specified, wakeup using GPIO with given number
--io_level=<0|1> GPIO level to trigger wakeup
join [--timeout=<t>] <ssid> [<pass>]
Join WiFi AP as a station
--timeout=<t> Connection timeout, ms
<ssid> SSID of AP
<pass> PSK of AP
[esp32]> free
257200
[esp32]> deep_sleep -t 1000
I (146929) deep_sleep: Enabling timer wakeup, timeout=1000000us
I (619) heap_init: Initializing. RAM available for dynamic allocation:
I (620) heap_init: At 3FFAE2A0 len 00001D60 (7 KiB): DRAM
I (626) heap_init: At 3FFB7EA0 len 00028160 (160 KiB): DRAM
I (645) heap_init: At 3FFE0440 len 00003BC0 (14 KiB): D/IRAM
I (664) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (684) heap_init: At 40093EA8 len 0000C158 (48 KiB): IRAM
This is an example of ESP-IDF console component.
Type 'help' to get the list of commands.
Use UP/DOWN arrows to navigate through command history.
Press TAB when typing command name to auto-complete.
[esp32]> join --timeout 10000 test_ap test_password
I (182639) connect: Connecting to 'test_ap'
I (184619) connect: Connected
[esp32]> free
212328
[esp32]> restart
I (205639) restart: Restarting
I (616) heap_init: Initializing. RAM available for dynamic allocation:
I (617) heap_init: At 3FFAE2A0 len 00001D60 (7 KiB): DRAM
I (623) heap_init: At 3FFB7EA0 len 00028160 (160 KiB): DRAM
I (642) heap_init: At 3FFE0440 len 00003BC0 (14 KiB): D/IRAM
I (661) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (681) heap_init: At 40093EA8 len 0000C158 (48 KiB): IRAM
This is an example of ESP-IDF console component.
Type 'help' to get the list of commands.
Use UP/DOWN arrows to navigate through command history.
Press TAB when typing command name to auto-complete.
[esp32]>
```
## Troubleshooting
### Line Endings
The line endings in the Console Example are configured to match particular serial monitors. Therefore, if the following log output appears, consider using a different serial monitor (e.g. Putty for Windows) or modify the example's [UART configuration](#Configuring-UART-and-VFS).
```
This is an example of ESP-IDF console component.
Type 'help' to get the list of commands.
Use UP/DOWN arrows to navigate through command history.
Press TAB when typing command name to auto-complete.
Your terminal application does not support escape sequences.
Line editing and history features are disabled.
On Windows, try using Putty instead.
esp32>
```
## Example Breakdown
### Configuring UART
The ``initialize_console()`` function in the example configures some aspects of UART relevant to the operation of the console.
- **Line Endings**: The default line endings are configured to match those expected/generated by common serial monitor programs, such as `screen`, `minicom`, and the `idf_monitor.py` included in the SDK. The default behavior for these commands are:
- When 'enter' key is pressed on the keyboard, `CR` (0x13) code is sent to the serial device.
- To move the cursor to the beginning of the next line, serial device needs to send `CR LF` (0x13 0x10) sequence.
### Line editing
The main source file of the example illustrates how to use `linenoise` library, including line completion, hints, and history.
### Commands
Several commands are registered using `esp_console_cmd_register()` function. See the `register_wifi()` and `register_system()` functions in `cmd_wifi.c` and `cmd_system.c` files.
### Command handling
Main loop inside `app_main()` function illustrates how to use `linenoise` and `esp_console_run()` to implement read/eval loop.
### Argument parsing
Several commands implemented in `cmd_wifi.c` and `cmd_system.c` use the Argtable3 library to parse and check the arguments.
### Command history
Each time a new command line is obtained from `linenoise`, it is written into history and the history is saved into a file in flash memory. On reset, history is initialized from that file.

BIN
build/.ninja_deps Normal file

Binary file not shown.

1107
build/.ninja_log Normal file

File diff suppressed because it is too large Load Diff

660
build/CMakeCache.txt Normal file
View File

@ -0,0 +1,660 @@
# This is the CMakeCache file.
# For build in directory: /home/mithras/Documents/bakalarka/build
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//No help, variable specified on the command line.
CCACHE_ENABLE:UNINITIALIZED=0
//Path to a program.
CMAKE_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//Flags used by the assembler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the assembler during debug builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the assembler during release minsize builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the assembler during release builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the assembler during Release with Debug Info builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build: None Debug Release Coverage ASan ASanDbg
// MemSan MemSanDbg Check CheckFull
CMAKE_BUILD_TYPE:STRING=
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address
//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release builds for minimum
// size.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during release builds with debug info.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address
//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release builds for minimum
// size.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during release builds with debug info.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize 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 Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_LINKER:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja
//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=bakalarka
//Path to a program.
CMAKE_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib
//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info 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.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/mithras/esp/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
//Build mbed TLS programs.
ENABLE_PROGRAMS:BOOL=
//Build mbed TLS tests.
ENABLE_TESTING:BOOL=
//Build mbed TLS with zlib library.
ENABLE_ZLIB_SUPPORT:BOOL=OFF
//No help, variable specified on the command line.
ESP_PLATFORM:UNINITIALIZED=1
//Git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
//IDF Build Target
IDF_TARGET:STRING=esp32
//Install mbed TLS headers.
INSTALL_MBEDTLS_HEADERS:BOOL=ON
//Explicitly link mbed TLS library to pthread.
LINK_WITH_PTHREAD:BOOL=OFF
//Path to a program.
PERL_EXECUTABLE:FILEPATH=/usr/bin/perl
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//Path to a program.
PYTHON_EXECUTABLE:FILEPATH=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python
//Allow unsafe builds. These builds ARE NOT SECURE.
UNSAFE_BUILD:BOOL=OFF
//Build mbed TLS with the pkcs11-helper library.
USE_PKCS11_HELPER_LIBRARY:BOOL=OFF
//Build mbed TLS shared library.
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
//Build mbed TLS static library.
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
//Dependencies for the target
__idf_app_trace_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_app_update_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_asio_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_bootloader_support_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_ca_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_cbor_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_cmd_nvs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_cmd_system_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_coap_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_console_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_cxx_LIB_DEPENDS:STATIC=general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;stdc++;general;gcc;
//Dependencies for the target
__idf_driver_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_efuse_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp-tls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp32_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;gcc;
//Dependencies for the target
__idf_esp_adc_cal_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_common_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_xtensa;general;__idf_esp32;general;__idf_ulp;general;__idf_efuse;general;__idf_esp_http_client;general;__idf_esp_http_server;general;__idf_bootloader_support;general;__idf_nvs_flash;general;__idf_esp_wifi;general;__idf_app_update;general;__idf_lwip;general;__idf_spi_flash;general;__idf_wpa_supplicant;general;__idf_tcpip_adapter;
//Dependencies for the target
__idf_esp_eth_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_event_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_gdbstub_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_http_client_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_http_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_https_ota_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_https_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_local_ctrl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_netif_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_ringbuf_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_serial_slave_link_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_timer_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_websocket_client_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_esp_wifi_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;-L /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32;general;coexist;general;core;general;espnow;general;mesh;general;net80211;general;pp;general;rtc;general;smartconfig;general;phy;
//Dependencies for the target
__idf_espcoredump_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_expat_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_fatfs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_files_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_freemodbus_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_freertos_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_heap_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_https_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_jsmn_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_json_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_libsodium_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_log_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lv_examples_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lvgl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lvgl_esp32_drivers_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lvgl_tft_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lvgl_touch_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_lwip_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_main_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_mdns_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_mqtt_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_newlib_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_nghttp_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_nvs_flash_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_openssl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_perfmon_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_protobuf-c_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_protocomm_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_pthread_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_sdmmc_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_soc_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;soc_esp32;
//Dependencies for the target
__idf_spi_flash_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_spiffs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_tcp_transport_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_tcpip_adapter_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_ulp_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_unity_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_vfs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_wear_levelling_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_wifi_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_wifi_provisioning_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_wpa_supplicant_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
__idf_xtensa_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp32;general;/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a;
//Value Computed by CMake
bakalarka_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build
//Value Computed by CMake
bakalarka_SOURCE_DIR:STATIC=/home/mithras/Documents/bakalarka
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/esp-idf
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf
//Value Computed by CMake
mbed TLS_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls
//Value Computed by CMake
mbed TLS_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf/components/mbedtls/mbedtls
//Dependencies for the target
mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
//Dependencies for the target
mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;mbedx509;
//Dependencies for the target
mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;mbedcrypto;
//Dependencies for the target
soc_esp32_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/mithras/Documents/bakalarka/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=10
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/mithras/Documents/bakalarka
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=89
//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
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10
//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
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.17.1()]
//Details about finding Perl
FIND_PACKAGE_MESSAGE_DETAILS_Perl:INTERNAL=[/usr/bin/perl][v5.26.1()]
//Details about finding PythonInterp
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python][v2.7.17()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PERL_EXECUTABLE
PERL_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_EXECUTABLE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1

View File

@ -0,0 +1,17 @@
set(CMAKE_ASM_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_ASM_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)

View File

@ -0,0 +1,73 @@
set(CMAKE_C_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "8.2.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
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")
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_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_C_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
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)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "ELF")
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_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,75 @@
set(CMAKE_CXX_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "8.2.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
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")
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_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_CXX_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP)
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
set(CMAKE_CXX_COMPILER_ABI "ELF")
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_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-4.15.0-91-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-91-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/mithras/esp/esp-idf/tools/cmake/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)

View File

@ -0,0 +1,598 @@
#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
/* 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
/* __INTEL_COMPILER = VRP */
# 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
# 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
#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(__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(__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(_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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#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__)
# 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(__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(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# 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__)
# endif
#elif defined(__ARMCC_VERSION)
# 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(__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
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi)
# define COMPILER_ID "MIPSpro"
#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(__CRAYXE) || defined(__CRAYXC)
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(__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(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#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"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#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_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(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# 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 components. */
#ifdef 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'};
#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 "]";
#if !defined(__STDC__)
# if defined(_MSC_VER) && !defined(__clang__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

Binary file not shown.

View File

@ -0,0 +1,576 @@
/* 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
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
/* __INTEL_COMPILER = VRP */
# 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
# 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
#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(__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(__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(_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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#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__)
# 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(__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(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# 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__)
# endif
#elif defined(__ARMCC_VERSION)
# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi)
# define COMPILER_ID "MIPSpro"
#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(__CRAYXE) || defined(__CRAYXC)
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(__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(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#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"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#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_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(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# 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 components. */
#ifdef 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'};
#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 "]";
#if defined(_MSC_VER) && defined(_MSVC_LANG)
#define CXX_STD _MSVC_LANG
#else
#define CXX_STD __cplusplus
#endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201402L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}

Binary file not shown.

View File

@ -0,0 +1,506 @@
The target system is: Generic - -
The host system is: Linux - 4.15.0-91-generic - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
Build flags: -mlongcalls;-Wno-frame-address
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/CMakeFiles/3.10.2/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
Build flags: -mlongcalls;-Wno-frame-address
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Determining if the C compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_97232"
[1/2] Building C object CMakeFiles/cmTC_97232.dir/testCCompiler.c.obj
[2/2] Linking C executable cmTC_97232
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_e39d4"
[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj
[2/2] Linking C executable cmTC_e39d4
Using built-in specs.
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2)
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4'
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH4jMoM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e39d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_e39d4"]
ignore line: [[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj]
ignore line: [[2/2] Linking C executable cmTC_e39d4]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc]
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
ignore line: [Thread model: posix]
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4']
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH4jMoM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e39d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccH4jMoM.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_e39d4] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [gcc;c;nosys;c;gcc]
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_66137"
[1/2] Building C object CMakeFiles/cmTC_66137.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_66137
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:1c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_1a2bf"
[1/2] Building C object CMakeFiles/cmTC_1a2bf.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_1a2bf
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_e5b33"
[1/2] Building C object CMakeFiles/cmTC_e5b33.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_e5b33
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:0c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_31216"
[1/2] Building CXX object CMakeFiles/cmTC_31216.dir/testCXXCompiler.cxx.obj
[2/2] Linking CXX executable cmTC_31216
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_dec4a"
[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj
[2/2] Linking CXX executable cmTC_dec4a
Using built-in specs.
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2)
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a'
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccS991LX.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_dec4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_dec4a"]
ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [[2/2] Linking CXX executable cmTC_dec4a]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++]
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
ignore line: [Thread model: posix]
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a']
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccS991LX.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_dec4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccS991LX.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_dec4a] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_bbc42"
[1/2] Building CXX object CMakeFiles/cmTC_bbc42.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_bbc42
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_138f8"
[1/2] Building CXX object CMakeFiles/cmTC_138f8.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_138f8
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_762ca"
[1/2] Building CXX object CMakeFiles/cmTC_762ca.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_762ca
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_71da3"
[1/2] Building CXX object CMakeFiles/cmTC_71da3.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_71da3
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:0cxx_alias_templates
Feature record: CXX_FEATURE:0cxx_alignas
Feature record: CXX_FEATURE:0cxx_alignof
Feature record: CXX_FEATURE:0cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:0cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:0cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:0cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:0cxx_default_function_template_args
Feature record: CXX_FEATURE:0cxx_defaulted_functions
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:0cxx_delegating_constructors
Feature record: CXX_FEATURE:0cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
Feature record: CXX_FEATURE:0cxx_explicit_conversions
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
Feature record: CXX_FEATURE:0cxx_extern_templates
Feature record: CXX_FEATURE:0cxx_final
Feature record: CXX_FEATURE:0cxx_func_identifier
Feature record: CXX_FEATURE:0cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
Feature record: CXX_FEATURE:0cxx_inline_namespaces
Feature record: CXX_FEATURE:0cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:0cxx_local_type_template_args
Feature record: CXX_FEATURE:0cxx_long_long_type
Feature record: CXX_FEATURE:0cxx_noexcept
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
Feature record: CXX_FEATURE:0cxx_nullptr
Feature record: CXX_FEATURE:0cxx_override
Feature record: CXX_FEATURE:0cxx_range_for
Feature record: CXX_FEATURE:0cxx_raw_string_literals
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
Feature record: CXX_FEATURE:0cxx_rvalue_references
Feature record: CXX_FEATURE:0cxx_sizeof_member
Feature record: CXX_FEATURE:0cxx_static_assert
Feature record: CXX_FEATURE:0cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:0cxx_thread_local
Feature record: CXX_FEATURE:0cxx_trailing_return_types
Feature record: CXX_FEATURE:0cxx_unicode_literals
Feature record: CXX_FEATURE:0cxx_uniform_initialization
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
Feature record: CXX_FEATURE:0cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates

View File

@ -0,0 +1,637 @@
/home/mithras/Documents/bakalarka/build/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/gen_project_binary.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/bakalarka.elf.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/menuconfig.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/app.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/erase_flash.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/flash.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/confserver.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/monitor.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/_project_elf_src.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/size.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/size-components.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/size-files.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/__idf_soc.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/partition_table.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/__idf_log.dir
/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/__idf_heap.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/__idf_driver.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/esp32_linker_script.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir
/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/__idf_asio.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/__idf_coap.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/__idf_console.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/__idf_expat.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/__idf_json.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/__idf_unity.dir
/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/__idf_main.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/__idf_ca.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/__idf_files.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/list_install_components.dir
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/local.dir

View File

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

View File

@ -0,0 +1,13 @@
# Target labels
bootloader
# Source files and their labels
/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader
/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader.rule
/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader-complete.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule
/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule

View File

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

Binary file not shown.

View File

@ -0,0 +1,34 @@
const char features[] = {"\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_restrict\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
"1"
#else
"0"
#endif
"c_static_assert\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

@ -0,0 +1,405 @@
const char features[] = {"\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_aggregate_default_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alias_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alignas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alignof\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_attributes\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_attribute_deprecated\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_auto_type\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_binary_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_constexpr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_contextual_conversions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_decltype\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_decltype_auto\n"
"CXX_FEATURE:"
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_decltype_incomplete_return_types\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_default_function_template_args\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_defaulted_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_defaulted_move_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_delegating_constructors\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_deleted_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_digit_separators\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_enum_forward_declarations\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_explicit_conversions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_extended_friend_declarations\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_extern_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_final\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_func_identifier\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_generalized_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_generic_lambdas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_inheriting_constructors\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_inline_namespaces\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_lambdas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_lambda_init_captures\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_local_type_template_args\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_long_long_type\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_noexcept\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_nonstatic_member_init\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_nullptr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_override\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_range_for\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_raw_string_literals\n"
"CXX_FEATURE:"
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_reference_qualified_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_relaxed_constexpr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_return_type_deduction\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_right_angle_brackets\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_rvalue_references\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_sizeof_member\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_static_assert\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_strong_enums\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus
"1"
#else
"0"
#endif
"cxx_template_template_parameters\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_thread_local\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_trailing_return_types\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_unicode_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_uniform_initialization\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_unrestricted_unions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_user_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_variable_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_variadic_macros\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_variadic_templates\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

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

View File

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

View File

@ -0,0 +1 @@
132cc67c03364f5f032aa65c6b88f1f1bf7ecbee

2
build/app-flash_args Normal file
View File

@ -0,0 +1,2 @@
--flash_mode dio --flash_freq 40m --flash_size 4MB
0x10000 bakalarka.bin

BIN
build/bakalarka.bin Normal file

Binary file not shown.

74148
build/bakalarka.map Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,2 @@
--flash_mode dio --flash_freq 40m --flash_size 4MB
0x1000 bootloader/bootloader.bin

View File

@ -0,0 +1 @@
cmd='/usr/bin/cmake;-DSDKCONFIG=/home/mithras/Documents/bakalarka/sdkconfig;-DIDF_PATH=/home/mithras/esp/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python;-DEXTRA_COMPONENT_DIRS=/home/mithras/esp/esp-idf/components/bootloader;-DLEGACY_INCLUDE_COMMON_HEADERS=;-GNinja;<SOURCE_DIR><SOURCE_SUBDIR>'

View File

@ -0,0 +1 @@
cmd='@cmd@'

View File

@ -0,0 +1 @@
af3f4e38b844bed1e1b37ceda9ffa101 /home/mithras/Documents/bakalarka/build/bootloader/bootloader.bin

Binary file not shown.

View File

@ -0,0 +1,98 @@
# ninja log v5
1 111 1584721289 project_elf_src.c 4c9fd5165270a02a
111 224 1584721289 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj 39f2c4d183d9f94c
22 253 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 42e3d81226d253a4
12 379 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj d3c5ede6e6c27299
37 455 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj 81562121d4fb8150
43 560 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj 8898a12c67cd33fa
51 573 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj a9f6c39a17230087
224 669 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj f48c1e166a2e5ff9
253 846 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 2b859dddff4d3d9f
669 853 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj a048c55f35ee797b
456 862 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 99f23d5e1b52ca97
573 980 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj 24f02975769053da
846 1048 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 932944a4d1329f67
560 1071 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 4b73bd149c7cd7c8
862 1123 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj 9a522f0be4dd86ee
379 1138 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj 734a3835b3cf6628
980 1245 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj 112e1299c02e11f3
1048 1255 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 45d5062a3404d3b1
1138 1361 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 3ba313cb854b7073
1071 1449 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj 3f12f9d6e619127
1245 1490 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj a0d584cef520acc9
1361 1732 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj 28861ccb80887623
853 1754 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 23752131344e1500
1123 1766 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj 77be850043e71b69
1449 1937 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 3fd764a3b977514d
1732 2080 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c306442c10391e75
1755 2089 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj 586f148eb0beb3b8
1490 2111 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 518ceb6b757d2bae
1255 2119 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj 401a093051f100f0
2080 2267 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 8c40554611e8cf48
2089 2494 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj 917406aff40ca5af
2119 2749 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj e6016913e36d6ddb
2494 2785 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj d6006871ca7cae96
2267 2807 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj 69d85f7f3a5da155
1766 2927 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj f12140b1d002c08a
2785 3250 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj ec08a34b72b43988
2111 3301 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 14859c48f59abda8
2807 3338 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj 6f320ac5112d072e
2749 3361 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 16566f01f3195d7e
3250 3394 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 3b4e6f523647b79a
1937 3448 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 7e9268532abcfae9
3394 3611 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj 36ef8dc73befd7d8
3301 3622 1584721293 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 24213a63c172023c
3338 3627 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj 677c43cfb05268b6
3361 3644 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 68c2864a17543c0c
3448 3686 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj 24950562e87a7da7
3611 3712 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj 341011598e117e7b
3644 3739 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj c4b7c27093e4cb19
3627 3807 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj befd0f7ac453e6b9
3686 3873 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj 8fab98c12dc6e1cc
3712 3894 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj 7911e14d5520a5b7
3807 3919 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 662fd3584c684d3b
3622 3933 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj 808de98b692dc899
3739 3968 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj 74f3efe5b6a5fd5e
3873 4038 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj e69c64ca1a755812
3894 4121 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b1af8f36f7824178
3968 4177 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 768afe5d5c7937af
3919 4290 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 4baefb36b582ee85
3934 4360 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 4dd4488d06e527ea
2927 4437 1584721293 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj 68d93774c493d6c5
4177 4446 1584721293 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj c066160c8c5bc4e7
4360 4551 1584721294 esp-idf/log/liblog.a 3c0f1be6faeb5037
4290 4588 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj a13548688a81f026
4551 4685 1584721294 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71
4437 4825 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 15290b95c219900e
4685 4828 1584721294 esp-idf/soc/libsoc.a 1570b58e380cf730
4446 4909 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 9048a75f29b34891
4121 4942 1584721294 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj f38c73437017eb3f
4589 4994 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj c43194974e29b4b2
4825 5176 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 7858373c3da35667
4909 5466 1584721294 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj 6b0dd43a50bc87a3
4828 5475 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj f235884acab48ea5
4994 5524 1584721294 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 6f345af67cfa1dd1
4942 5758 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 16d13c8b378bab1
5176 5778 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj c01c0f5dd202d512
5524 5867 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 2cbd6f45bf171db9
5867 6134 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 736d206ef8002f9e
5778 6273 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj 92ec694ceec1fd80
5475 6304 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 512d67f2eba22aaa
5758 6323 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 259a7ce5be468a98
4038 6392 1584721295 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj be714a60aa45b932
6134 6432 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 585b0ddb213dbf3f
6392 6542 1584721296 esp-idf/micro-ecc/libmicro-ecc.a 17c637439710cf25
6304 6643 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj 12699e613499e44b
6273 6725 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj e3c598253458ab34
5468 6794 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj e2ca1680d816129b
6432 6800 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj 8f21778471c0be6
6323 7019 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj 49cf861170b4d05b
6725 7077 1584721296 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj e5f8113653675df9
6542 7167 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj 70cf295a874ba7ea
6643 7331 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 2fcd32e9793fbb88
7331 7431 1584721296 esp-idf/bootloader_support/libbootloader_support.a f8e76f8d77921e80
7431 7536 1584721297 esp-idf/efuse/libefuse.a 8b73fc3e19818359
7536 7618 1584721297 esp-idf/spi_flash/libspi_flash.a d0e2a18fd79e1fab
7618 7669 1584721297 esp-idf/main/libmain.a 540777458a2e8b0a
7669 7856 1584721297 bootloader.elf 559c852b4006a53b
7856 8808 1584721298 .bin_timestamp cbf29532614689a2

View File

@ -0,0 +1,412 @@
# This is the CMakeCache file.
# For build in directory: /home/mithras/Documents/bakalarka/build/bootloader
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//Flags used by the assembler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the assembler during debug builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the assembler during release minsize builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the assembler during release builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the assembler during Release with Debug Info builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
CMAKE_BUILD_TYPE:STRING=
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address
//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release builds for minimum
// size.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during release builds with debug info.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address
//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release builds for minimum
// size.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during release builds with debug info.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize 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 Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_LINKER:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja
//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=bootloader
//Path to a program.
CMAKE_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib
//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info 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.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/mithras/esp/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=/home/mithras/esp/esp-idf/components/bootloader
//Git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
//No help, variable specified on the command line.
IDF_PATH:UNINITIALIZED=/home/mithras/esp/esp-idf
//IDF Build Target
IDF_TARGET:STRING=esp32
//No help, variable specified on the command line.
LEGACY_INCLUDE_COMMON_HEADERS:UNINITIALIZED=
//No help, variable specified on the command line.
PYTHON:UNINITIALIZED=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//No help, variable specified on the command line.
SDKCONFIG:UNINITIALIZED=/home/mithras/Documents/bakalarka/sdkconfig
//Dependencies for the target
__idf_bootloader_support_LIB_DEPENDS:STATIC=general;__idf_log;
//Dependencies for the target
__idf_efuse_LIB_DEPENDS:STATIC=general;__idf_log;
//Dependencies for target
__idf_log_LIB_DEPENDS:STATIC=
//Dependencies for the target
__idf_main_LIB_DEPENDS:STATIC=general;__idf_log;
//Dependencies for the target
__idf_micro-ecc_LIB_DEPENDS:STATIC=general;__idf_log;
//Dependencies for the target
__idf_soc_LIB_DEPENDS:STATIC=general;__idf_log;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_xtensa;general;soc_esp32;
//Dependencies for the target
__idf_spi_flash_LIB_DEPENDS:STATIC=general;__idf_log;
//Value Computed by CMake
bootloader_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/bootloader
//Value Computed by CMake
bootloader_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf/components/bootloader/subproject
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/bootloader/esp-idf
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf
//Dependencies for the target
soc_esp32_LIB_DEPENDS:STATIC=general;__idf_log;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_xtensa;
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/mithras/Documents/bakalarka/build/bootloader
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=10
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/mithras/esp/esp-idf/components/bootloader/subproject
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=19
//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
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10
//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
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.17.1()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1

View File

@ -0,0 +1,17 @@
set(CMAKE_ASM_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_ASM_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)

View File

@ -0,0 +1,73 @@
set(CMAKE_C_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "8.2.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
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")
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_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_C_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
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)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "ELF")
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_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,75 @@
set(CMAKE_CXX_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "8.2.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
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")
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_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar")
set(CMAKE_CXX_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar")
set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib")
set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld")
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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP)
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
set(CMAKE_CXX_COMPILER_ABI "ELF")
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_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-4.15.0-91-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-91-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/mithras/esp/esp-idf/tools/cmake/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)

View File

@ -0,0 +1,598 @@
#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
/* 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
/* __INTEL_COMPILER = VRP */
# 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
# 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
#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(__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(__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(_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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#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__)
# 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(__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(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# 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__)
# endif
#elif defined(__ARMCC_VERSION)
# 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(__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
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi)
# define COMPILER_ID "MIPSpro"
#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(__CRAYXE) || defined(__CRAYXC)
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(__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(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#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"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#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_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(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# 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 components. */
#ifdef 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'};
#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 "]";
#if !defined(__STDC__)
# if defined(_MSC_VER) && !defined(__clang__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

Binary file not shown.

View File

@ -0,0 +1,576 @@
/* 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
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
/* __INTEL_COMPILER = VRP */
# 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
# 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
#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(__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(__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(_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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#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__)
# 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(__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(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# 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__)
# endif
#elif defined(__ARMCC_VERSION)
# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi)
# define COMPILER_ID "MIPSpro"
#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(__CRAYXE) || defined(__CRAYXC)
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(__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(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#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"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#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_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(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# 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 components. */
#ifdef 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'};
#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 "]";
#if defined(_MSC_VER) && defined(_MSVC_LANG)
#define CXX_STD _MSVC_LANG
#else
#define CXX_STD __cplusplus
#endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201402L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}

Binary file not shown.

View File

@ -0,0 +1,506 @@
The target system is: Generic - -
The host system is: Linux - 4.15.0-91-generic - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
Build flags: -mlongcalls;-Wno-frame-address
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
Build flags: -mlongcalls;-Wno-frame-address
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Determining if the C compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_abd54"
[1/2] Building C object CMakeFiles/cmTC_abd54.dir/testCCompiler.c.obj
[2/2] Linking C executable cmTC_abd54
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_e89cb"
[1/2] Building C object CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj
[2/2] Linking C executable cmTC_e89cb
Using built-in specs.
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2)
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb'
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKRL6G8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e89cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_e89cb"]
ignore line: [[1/2] Building C object CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj]
ignore line: [[2/2] Linking C executable cmTC_e89cb]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc]
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
ignore line: [Thread model: posix]
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb']
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKRL6G8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e89cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccKRL6G8.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_e89cb] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [gcc;c;nosys;c;gcc]
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_184a7"
[1/2] Building C object CMakeFiles/cmTC_184a7.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_184a7
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:1c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_c40dd"
[1/2] Building C object CMakeFiles/cmTC_c40dd.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_c40dd
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_93957"
[1/2] Building C object CMakeFiles/cmTC_93957.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_93957
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:0c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_aa771"
[1/2] Building CXX object CMakeFiles/cmTC_aa771.dir/testCXXCompiler.cxx.obj
[2/2] Linking CXX executable cmTC_aa771
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_0cd2f"
[1/2] Building CXX object CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj
[2/2] Linking CXX executable cmTC_0cd2f
Using built-in specs.
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2)
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f'
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2eThsr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_0cd2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_0cd2f"]
ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [[2/2] Linking CXX executable cmTC_0cd2f]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++]
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
ignore line: [Thread model: posix]
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f']
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2eThsr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_0cd2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc2eThsr.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_0cd2f] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_2e680"
[1/2] Building CXX object CMakeFiles/cmTC_2e680.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_2e680
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_6ed5b"
[1/2] Building CXX object CMakeFiles/cmTC_6ed5b.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_6ed5b
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_18c8c"
[1/2] Building CXX object CMakeFiles/cmTC_18c8c.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_18c8c
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_68ccf"
[1/2] Building CXX object CMakeFiles/cmTC_68ccf.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_68ccf
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:0cxx_alias_templates
Feature record: CXX_FEATURE:0cxx_alignas
Feature record: CXX_FEATURE:0cxx_alignof
Feature record: CXX_FEATURE:0cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:0cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:0cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:0cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:0cxx_default_function_template_args
Feature record: CXX_FEATURE:0cxx_defaulted_functions
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:0cxx_delegating_constructors
Feature record: CXX_FEATURE:0cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
Feature record: CXX_FEATURE:0cxx_explicit_conversions
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
Feature record: CXX_FEATURE:0cxx_extern_templates
Feature record: CXX_FEATURE:0cxx_final
Feature record: CXX_FEATURE:0cxx_func_identifier
Feature record: CXX_FEATURE:0cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
Feature record: CXX_FEATURE:0cxx_inline_namespaces
Feature record: CXX_FEATURE:0cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:0cxx_local_type_template_args
Feature record: CXX_FEATURE:0cxx_long_long_type
Feature record: CXX_FEATURE:0cxx_noexcept
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
Feature record: CXX_FEATURE:0cxx_nullptr
Feature record: CXX_FEATURE:0cxx_override
Feature record: CXX_FEATURE:0cxx_range_for
Feature record: CXX_FEATURE:0cxx_raw_string_literals
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
Feature record: CXX_FEATURE:0cxx_rvalue_references
Feature record: CXX_FEATURE:0cxx_sizeof_member
Feature record: CXX_FEATURE:0cxx_static_assert
Feature record: CXX_FEATURE:0cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:0cxx_thread_local
Feature record: CXX_FEATURE:0cxx_trailing_return_types
Feature record: CXX_FEATURE:0cxx_unicode_literals
Feature record: CXX_FEATURE:0cxx_uniform_initialization
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
Feature record: CXX_FEATURE:0cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates

View File

@ -0,0 +1,61 @@
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size-components.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/bootloader.elf.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/_project_elf_src.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/confserver.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/menuconfig.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/gen_project_binary.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/erase_flash.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size-files.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/app.dir
/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/monitor.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir

View File

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

Binary file not shown.

View File

@ -0,0 +1,34 @@
const char features[] = {"\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_restrict\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
"1"
#else
"0"
#endif
"c_static_assert\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

@ -0,0 +1,405 @@
const char features[] = {"\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_aggregate_default_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alias_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alignas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_alignof\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_attributes\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_attribute_deprecated\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_auto_type\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_binary_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_constexpr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_contextual_conversions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_decltype\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_decltype_auto\n"
"CXX_FEATURE:"
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_decltype_incomplete_return_types\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_default_function_template_args\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_defaulted_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_defaulted_move_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_delegating_constructors\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_deleted_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_digit_separators\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_enum_forward_declarations\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_explicit_conversions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_extended_friend_declarations\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_extern_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_final\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_func_identifier\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_generalized_initializers\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_generic_lambdas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_inheriting_constructors\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_inline_namespaces\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_lambdas\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_lambda_init_captures\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_local_type_template_args\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_long_long_type\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_noexcept\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_nonstatic_member_init\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_nullptr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_override\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_range_for\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_raw_string_literals\n"
"CXX_FEATURE:"
#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_reference_qualified_functions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_relaxed_constexpr\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L
"1"
#else
"0"
#endif
"cxx_return_type_deduction\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_right_angle_brackets\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_rvalue_references\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_sizeof_member\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_static_assert\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_strong_enums\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus
"1"
#else
"0"
#endif
"cxx_template_template_parameters\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_thread_local\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_trailing_return_types\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_unicode_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_uniform_initialization\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_unrestricted_unions\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L
"1"
#else
"0"
#endif
"cxx_user_literals\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L
"1"
#else
"0"
#endif
"cxx_variable_templates\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_variadic_macros\n"
"CXX_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__))
"1"
#else
"0"
#endif
"cxx_variadic_templates\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

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

View File

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

View File

@ -0,0 +1 @@
132cc67c03364f5f032aa65c6b88f1f1bf7ecbee

1721
build/bootloader/build.ninja Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,50 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader/subproject
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/cmake_install.cmake")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/mithras/Documents/bakalarka/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -0,0 +1,517 @@
[
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -I/home/mithras/esp/esp-idf/components/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -mlongcalls -Wno-frame-address -o CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj -c /home/mithras/Documents/bakalarka/build/bootloader/project_elf_src.c",
"file": "/home/mithras/Documents/bakalarka/build/bootloader/project_elf_src.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/lldesc.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/lldesc.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/compare_set.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/compare_set.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c",
"file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c",
"file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj -c /home/mithras/esp/esp-idf/components/log/log.c",
"file": "/home/mithras/esp/esp-idf/components/log/log.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj -c /home/mithras/esp/esp-idf/components/log/log_buffers.c",
"file": "/home/mithras/esp/esp-idf/components/log/log_buffers.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj -c /home/mithras/esp/esp-idf/components/log/log_noos.c",
"file": "/home/mithras/esp/esp-idf/components/log/log_noos.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj -c /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/uECC.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/uECC.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c",
"file": "/home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj -c /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c",
"file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_init.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_init.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/flash_encrypt.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/flash_encrypt.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot_signatures.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot_signatures.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c"
},
{
"directory": "/home/mithras/Documents/bakalarka/build/bootloader",
"command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj -c /home/mithras/esp/esp-idf/components/bootloader/subproject/main/bootloader_start.c",
"file": "/home/mithras/esp/esp-idf/components/bootloader/subproject/main/bootloader_start.c"
}
]

View File

@ -0,0 +1,10 @@
{
"COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig",
"COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild",
"COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename",
"IDF_CMAKE": "y",
"IDF_TARGET": "esp32",
"IDF_PATH": "/home/mithras/esp/esp-idf",
"COMPONENT_KCONFIGS_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/bootloader/kconfigs.in",
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/bootloader/kconfigs_projbuild.in"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,125 @@
/*
* Automatically generated file. DO NOT EDIT.
* Espressif IoT Development Framework (ESP-IDF) Configuration Header
*/
#pragma once
#define CONFIG_IDF_CMAKE 1
#define CONFIG_IDF_TARGET "esp32"
#define CONFIG_IDF_TARGET_ESP32 1
#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000
#define CONFIG_SDK_TOOLPREFIX "xtensa-esp32-elf-"
#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_LOG_LEVEL_WARN 1
#define CONFIG_BOOTLOADER_LOG_LEVEL 2
#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
#define CONFIG_ESPTOOLPY_BAUD_OTHER_VAL 115200
#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1
#define CONFIG_ESPTOOLPY_FLASHMODE "dio"
#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1
#define CONFIG_ESPTOOLPY_FLASHFREQ "40m"
#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1
#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB"
#define CONFIG_ESPTOOLPY_FLASHSIZE_DETECT 1
#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_115200B 1
#define CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL 115200
#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200
#define CONFIG_PARTITION_TABLE_CUSTOM 1
#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_example.csv"
#define CONFIG_PARTITION_TABLE_FILENAME "partitions_example.csv"
#define CONFIG_PARTITION_TABLE_OFFSET 0x8000
#define CONFIG_PARTITION_TABLE_MD5 1
#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1
#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1
#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1
#define CONFIG_EFUSE_MAX_BLK_LEN 192
#define CONFIG_ESP32_REV_MIN_0 1
#define CONFIG_ESP32_REV_MIN 0
#define CONFIG_ESP32_DPORT_WORKAROUND 1
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 1
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ 160
#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4
#define CONFIG_ESP32_ULP_COPROC_RESERVE_MEM 0
#define CONFIG_ESP32_PANIC_PRINT_REBOOT 1
#define CONFIG_ESP32_DEBUG_OCDAWARE 1
#define CONFIG_ESP32_BROWNOUT_DET 1
#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 1
#define CONFIG_ESP32_BROWNOUT_DET_LVL 0
#define CONFIG_ESP32_REDUCE_PHY_TX_POWER 1
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 1
#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC 1
#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES 1024
#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY 2000
#define CONFIG_ESP32_XTAL_FREQ_40 1
#define CONFIG_ESP32_XTAL_FREQ 40
#define CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL 5
#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1
#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32
#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304
#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 7168
#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024
#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1
#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048
#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1
#define CONFIG_ESP_CONSOLE_UART_NUM 0
#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200
#define CONFIG_ESP_INT_WDT 1
#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300
#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1
#define CONFIG_ESP_TASK_WDT 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_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_LOG_DEFAULT_LEVEL_INFO 1
#define CONFIG_LOG_DEFAULT_LEVEL 3
#define CONFIG_LOG_COLORS 1
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1
#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1
/* List of deprecated options */
#define CONFIG_BROWNOUT_DET CONFIG_ESP32_BROWNOUT_DET
#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0
#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT
#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT
#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_ESP32_RTC_CLK_SRC_INT_RC
#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_WARN CONFIG_BOOTLOADER_LOG_LEVEL_WARN
#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE
#define CONFIG_MONITOR_BAUD_115200B CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B
#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT
#define CONFIG_REDUCE_PHY_TX_POWER CONFIG_ESP32_REDUCE_PHY_TX_POWER
#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
#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_TOOLPREFIX CONFIG_SDK_TOOLPREFIX

View File

@ -0,0 +1,194 @@
{
"APP_BUILD_BOOTLOADER": true,
"APP_BUILD_GENERATE_BINARIES": true,
"APP_BUILD_TYPE_APP_2NDBOOT": true,
"APP_BUILD_TYPE_ELF_RAM": false,
"APP_BUILD_USE_FLASH_SECTIONS": true,
"BOOTLOADER_APP_ROLLBACK_ENABLE": false,
"BOOTLOADER_APP_TEST": false,
"BOOTLOADER_CUSTOM_RESERVE_RTC": false,
"BOOTLOADER_FACTORY_RESET": false,
"BOOTLOADER_LOG_LEVEL": 2,
"BOOTLOADER_LOG_LEVEL_DEBUG": false,
"BOOTLOADER_LOG_LEVEL_ERROR": false,
"BOOTLOADER_LOG_LEVEL_INFO": false,
"BOOTLOADER_LOG_LEVEL_NONE": false,
"BOOTLOADER_LOG_LEVEL_VERBOSE": false,
"BOOTLOADER_LOG_LEVEL_WARN": true,
"BOOTLOADER_RESERVE_RTC_SIZE": 0,
"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": 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_CXX_EXCEPTIONS": false,
"COMPILER_CXX_RTTI": false,
"COMPILER_DISABLE_GCC8_WARNINGS": false,
"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false,
"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true,
"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false,
"COMPILER_OPTIMIZATION_DEFAULT": true,
"COMPILER_OPTIMIZATION_NONE": false,
"COMPILER_OPTIMIZATION_PERF": false,
"COMPILER_OPTIMIZATION_SIZE": false,
"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_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_BROWNOUT_DET": true,
"ESP32_BROWNOUT_DET_LVL": 0,
"ESP32_BROWNOUT_DET_LVL_SEL_0": true,
"ESP32_BROWNOUT_DET_LVL_SEL_1": false,
"ESP32_BROWNOUT_DET_LVL_SEL_2": false,
"ESP32_BROWNOUT_DET_LVL_SEL_3": false,
"ESP32_BROWNOUT_DET_LVL_SEL_4": false,
"ESP32_BROWNOUT_DET_LVL_SEL_5": false,
"ESP32_BROWNOUT_DET_LVL_SEL_6": false,
"ESP32_BROWNOUT_DET_LVL_SEL_7": false,
"ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false,
"ESP32_DEBUG_OCDAWARE": true,
"ESP32_DEEP_SLEEP_WAKEUP_DELAY": 2000,
"ESP32_DEFAULT_CPU_FREQ_160": true,
"ESP32_DEFAULT_CPU_FREQ_240": false,
"ESP32_DEFAULT_CPU_FREQ_80": false,
"ESP32_DEFAULT_CPU_FREQ_MHZ": 160,
"ESP32_DISABLE_BASIC_ROM_CONSOLE": false,
"ESP32_DPORT_DIS_INTERRUPT_LVL": 5,
"ESP32_DPORT_WORKAROUND": true,
"ESP32_NO_BLOBS": false,
"ESP32_PANIC_GDBSTUB": false,
"ESP32_PANIC_PRINT_HALT": false,
"ESP32_PANIC_PRINT_REBOOT": true,
"ESP32_PANIC_SILENT_REBOOT": false,
"ESP32_REDUCE_PHY_TX_POWER": true,
"ESP32_REV_MIN": 0,
"ESP32_REV_MIN_0": true,
"ESP32_REV_MIN_1": false,
"ESP32_REV_MIN_2": false,
"ESP32_REV_MIN_3": false,
"ESP32_RTC_CLK_CAL_CYCLES": 1024,
"ESP32_RTC_CLK_SRC_EXT_CRYS": false,
"ESP32_RTC_CLK_SRC_EXT_OSC": false,
"ESP32_RTC_CLK_SRC_INT_8MD256": false,
"ESP32_RTC_CLK_SRC_INT_RC": true,
"ESP32_SPIRAM_SUPPORT": false,
"ESP32_TIME_SYSCALL_USE_FRC1": false,
"ESP32_TIME_SYSCALL_USE_NONE": false,
"ESP32_TIME_SYSCALL_USE_RTC": false,
"ESP32_TIME_SYSCALL_USE_RTC_FRC1": true,
"ESP32_TRACEMEM_RESERVE_DRAM": 0,
"ESP32_TRAX": false,
"ESP32_ULP_COPROC_ENABLED": false,
"ESP32_ULP_COPROC_RESERVE_MEM": 0,
"ESP32_UNIVERSAL_MAC_ADDRESSES": 4,
"ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
"ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false,
"ESP32_USE_FIXED_STATIC_RAM_SIZE": false,
"ESP32_XTAL_FREQ": 40,
"ESP32_XTAL_FREQ_26": false,
"ESP32_XTAL_FREQ_40": true,
"ESP32_XTAL_FREQ_AUTO": false,
"ESPTOOLPY_AFTER": "hard_reset",
"ESPTOOLPY_AFTER_NORESET": false,
"ESPTOOLPY_AFTER_RESET": true,
"ESPTOOLPY_BAUD_OTHER_VAL": 115200,
"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": "4MB",
"ESPTOOLPY_FLASHSIZE_16MB": false,
"ESPTOOLPY_FLASHSIZE_1MB": false,
"ESPTOOLPY_FLASHSIZE_2MB": false,
"ESPTOOLPY_FLASHSIZE_4MB": true,
"ESPTOOLPY_FLASHSIZE_8MB": false,
"ESPTOOLPY_FLASHSIZE_DETECT": true,
"ESPTOOLPY_MONITOR_BAUD": 115200,
"ESPTOOLPY_MONITOR_BAUD_115200B": true,
"ESPTOOLPY_MONITOR_BAUD_230400B": false,
"ESPTOOLPY_MONITOR_BAUD_2MB": false,
"ESPTOOLPY_MONITOR_BAUD_57600B": false,
"ESPTOOLPY_MONITOR_BAUD_921600B": false,
"ESPTOOLPY_MONITOR_BAUD_9600B": false,
"ESPTOOLPY_MONITOR_BAUD_OTHER": false,
"ESPTOOLPY_MONITOR_BAUD_OTHER_VAL": 115200,
"ESP_CONSOLE_UART_BAUDRATE": 115200,
"ESP_CONSOLE_UART_CUSTOM": false,
"ESP_CONSOLE_UART_DEFAULT": true,
"ESP_CONSOLE_UART_NONE": false,
"ESP_CONSOLE_UART_NUM": 0,
"ESP_ERR_TO_NAME_LOOKUP": true,
"ESP_INT_WDT": true,
"ESP_INT_WDT_CHECK_CPU1": true,
"ESP_INT_WDT_TIMEOUT_MS": 300,
"ESP_IPC_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_MAIN_TASK_STACK_SIZE": 7168,
"ESP_MINIMAL_SHARED_STACK_SIZE": 2048,
"ESP_PANIC_HANDLER_IRAM": false,
"ESP_SYSTEM_EVENT_QUEUE_SIZE": 32,
"ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304,
"ESP_TASK_WDT": true,
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true,
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true,
"ESP_TASK_WDT_PANIC": false,
"ESP_TASK_WDT_TIMEOUT_S": 5,
"IDF_CMAKE": true,
"IDF_FIRMWARE_CHIP_ID": 0,
"IDF_TARGET": "esp32",
"IDF_TARGET_ESP32": true,
"LEGACY_INCLUDE_COMMON_HEADERS": false,
"LOG_COLORS": true,
"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_TIMESTAMP_SOURCE_RTOS": true,
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
"PARTITION_TABLE_CUSTOM": true,
"PARTITION_TABLE_CUSTOM_FILENAME": "partitions_example.csv",
"PARTITION_TABLE_FILENAME": "partitions_example.csv",
"PARTITION_TABLE_MD5": true,
"PARTITION_TABLE_OFFSET": 32768,
"PARTITION_TABLE_SINGLE_APP": false,
"PARTITION_TABLE_TWO_OTA": false,
"PM_ENABLE": false,
"SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS": false,
"SDK_TOOLPREFIX": "xtensa-esp32-elf-",
"SECURE_BOOT_ENABLED": false,
"SECURE_FLASH_ENC_ENABLED": false,
"SECURE_SIGNED_APPS_NO_SECURE_BOOT": 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_ROM_DRIVER_PATCH": true,
"SPI_FLASH_SUPPORT_GD_CHIP": true,
"SPI_FLASH_SUPPORT_ISSI_CHIP": true,
"SPI_FLASH_USE_LEGACY_IMPL": false,
"SPI_FLASH_VERIFY_WRITE": false
}

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader_support
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

View File

@ -0,0 +1,53 @@
# Install script for directory: /home/mithras/esp/esp-idf
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/cmake_install.cmake")
endif()

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/efuse
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

Binary file not shown.

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/esp32
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/esp_common
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/esp_rom
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

View File

@ -0,0 +1,34 @@
# Install script for directory: /home/mithras/esp/esp-idf/components/esptool_py
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

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