file_system control

This commit is contained in:
Daniel Béreš 2020-03-21 20:55:47 +01:00
parent 7250b43400
commit efe39abf9d
20 changed files with 25160 additions and 24772 deletions

View File

@ -15,6 +15,7 @@
"freertos.h": "c", "freertos.h": "c",
"https_server.h": "c", "https_server.h": "c",
"esp_https_server.h": "c", "esp_https_server.h": "c",
"esp_console.h": "c" "esp_console.h": "c",
"file.h": "c"
} }
} }

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -71,6 +71,9 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during release builds with debug info. //Flags used by the compiler during release builds with debug info.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler
CMAKE_C_COMPILER:STRING=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
//A wrapper around 'ar' adding the appropriate '--plugin' option //A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler // 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 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
@ -548,6 +551,8 @@ CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR //ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB

View File

@ -35,17 +35,17 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Determining if the C compiler works passed with the following output: Determining if the C compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_97232" Run Build Command:"/usr/bin/ninja" "cmTC_535a7"
[1/2] Building C object CMakeFiles/cmTC_97232.dir/testCCompiler.c.obj [1/2] Building C object CMakeFiles/cmTC_535a7.dir/testCCompiler.c.obj
[2/2] Linking C executable cmTC_97232 [2/2] Linking C executable cmTC_535a7
Detecting C compiler ABI info compiled with the following output: Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_e39d4" Run Build Command:"/usr/bin/ninja" "cmTC_f8fe3"
[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj [1/2] Building C object CMakeFiles/cmTC_f8fe3.dir/CMakeCCompilerABI.c.obj
[2/2] Linking C executable cmTC_e39d4 [2/2] Linking C executable cmTC_f8fe3
Using built-in specs. 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_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 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
@ -55,18 +55,18 @@ Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2) 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/ 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/ 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' COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f8fe3'
/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 /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/ccbuuSar.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_f8fe3 /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_f8fe3.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' COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f8fe3'
Parsed C implicit link information from above output: Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 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: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_e39d4"] ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_f8fe3"]
ignore line: [[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj] ignore line: [[1/2] Building C object CMakeFiles/cmTC_f8fe3.dir/CMakeCCompilerABI.c.obj]
ignore line: [[2/2] Linking C executable cmTC_e39d4] ignore line: [[2/2] Linking C executable cmTC_f8fe3]
ignore line: [Using built-in specs.] 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_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: [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]
@ -76,27 +76,27 @@ Parsed C implicit link information from above output:
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] 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: [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: [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'] ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f8fe3']
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] 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/ccbuuSar.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_f8fe3 /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_f8fe3.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 [/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 [-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 [/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=/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=-fresolution=/tmp/ccbuuSar.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [cmTC_e39d4] ==> ignore arg [cmTC_f8fe3] ==> 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/../../../../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/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 [/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/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] ==> 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 [-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 [CMakeFiles/cmTC_f8fe3.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc] arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c] arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys] arg [-lnosys] ==> lib [nosys]
@ -117,9 +117,9 @@ Parsed C implicit link information from above output:
Detecting C [-std=c11] compiler features compiled with the following output: Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_66137" Run Build Command:"/usr/bin/ninja" "cmTC_58063"
[1/2] Building C object CMakeFiles/cmTC_66137.dir/feature_tests.c.obj [1/2] Building C object CMakeFiles/cmTC_58063.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_66137 [2/2] Linking C executable cmTC_58063
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -131,9 +131,9 @@ Run Build Command:"/usr/bin/ninja" "cmTC_66137"
Detecting C [-std=c99] compiler features compiled with the following output: Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_1a2bf" Run Build Command:"/usr/bin/ninja" "cmTC_b8d11"
[1/2] Building C object CMakeFiles/cmTC_1a2bf.dir/feature_tests.c.obj [1/2] Building C object CMakeFiles/cmTC_b8d11.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_1a2bf [2/2] Linking C executable cmTC_b8d11
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -145,9 +145,9 @@ Run Build Command:"/usr/bin/ninja" "cmTC_1a2bf"
Detecting C [-std=c90] compiler features compiled with the following output: Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_e5b33" Run Build Command:"/usr/bin/ninja" "cmTC_65974"
[1/2] Building C object CMakeFiles/cmTC_e5b33.dir/feature_tests.c.obj [1/2] Building C object CMakeFiles/cmTC_65974.dir/feature_tests.c.obj
[2/2] Linking C executable cmTC_e5b33 [2/2] Linking C executable cmTC_65974
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -157,17 +157,17 @@ Run Build Command:"/usr/bin/ninja" "cmTC_e5b33"
Determining if the CXX compiler works passed with the following output: Determining if the CXX compiler works passed with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_31216" Run Build Command:"/usr/bin/ninja" "cmTC_0e0df"
[1/2] Building CXX object CMakeFiles/cmTC_31216.dir/testCXXCompiler.cxx.obj [1/2] Building CXX object CMakeFiles/cmTC_0e0df.dir/testCXXCompiler.cxx.obj
[2/2] Linking CXX executable cmTC_31216 [2/2] Linking CXX executable cmTC_0e0df
Detecting CXX compiler ABI info compiled with the following output: Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_dec4a" Run Build Command:"/usr/bin/ninja" "cmTC_3509c"
[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj [1/2] Building CXX object CMakeFiles/cmTC_3509c.dir/CMakeCXXCompilerABI.cpp.obj
[2/2] Linking CXX executable cmTC_dec4a [2/2] Linking CXX executable cmTC_3509c
Using built-in specs. 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_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 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
@ -177,18 +177,18 @@ Thread model: posix
gcc version 8.2.0 (crosstool-NG esp-2019r2) 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/ 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/ 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' COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_3509c'
/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 /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/ccprUhKI.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_3509c /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_3509c.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' COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_3509c'
Parsed CXX implicit link information from above output: Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 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: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_dec4a"] ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_3509c"]
ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj] ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_3509c.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [[2/2] Linking CXX executable cmTC_dec4a] ignore line: [[2/2] Linking CXX executable cmTC_3509c]
ignore line: [Using built-in specs.] 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_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: [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]
@ -198,27 +198,27 @@ Parsed CXX implicit link information from above output:
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] 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: [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: [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'] ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_3509c']
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] 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/ccprUhKI.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_3509c /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_3509c.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 [/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 [-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 [/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=/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=-fresolution=/tmp/ccprUhKI.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [cmTC_dec4a] ==> ignore arg [cmTC_3509c] ==> 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/../../../../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/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 [/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/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] ==> 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 [-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 [CMakeFiles/cmTC_3509c.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++] arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m] arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc] arg [-lgcc] ==> lib [gcc]
@ -241,9 +241,9 @@ Parsed CXX implicit link information from above output:
Detecting CXX [-std=c++1z] compiler features compiled with the following output: Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_bbc42" Run Build Command:"/usr/bin/ninja" "cmTC_57108"
[1/2] Building CXX object CMakeFiles/cmTC_bbc42.dir/feature_tests.cxx.obj [1/2] Building CXX object CMakeFiles/cmTC_57108.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_bbc42 [2/2] Linking CXX executable cmTC_57108
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
@ -308,9 +308,9 @@ Run Build Command:"/usr/bin/ninja" "cmTC_bbc42"
Detecting CXX [-std=c++14] compiler features compiled with the following output: Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_138f8" Run Build Command:"/usr/bin/ninja" "cmTC_bcd36"
[1/2] Building CXX object CMakeFiles/cmTC_138f8.dir/feature_tests.cxx.obj [1/2] Building CXX object CMakeFiles/cmTC_bcd36.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_138f8 [2/2] Linking CXX executable cmTC_bcd36
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
@ -375,9 +375,9 @@ Run Build Command:"/usr/bin/ninja" "cmTC_138f8"
Detecting CXX [-std=c++11] compiler features compiled with the following output: Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_762ca" Run Build Command:"/usr/bin/ninja" "cmTC_80e8d"
[1/2] Building CXX object CMakeFiles/cmTC_762ca.dir/feature_tests.cxx.obj [1/2] Building CXX object CMakeFiles/cmTC_80e8d.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_762ca [2/2] Linking CXX executable cmTC_80e8d
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
@ -442,9 +442,9 @@ Run Build Command:"/usr/bin/ninja" "cmTC_762ca"
Detecting CXX [-std=c++98] compiler features compiled with the following output: Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/ninja" "cmTC_71da3" Run Build Command:"/usr/bin/ninja" "cmTC_156e3"
[1/2] Building CXX object CMakeFiles/cmTC_71da3.dir/feature_tests.cxx.obj [1/2] Building CXX object CMakeFiles/cmTC_156e3.dir/feature_tests.cxx.obj
[2/2] Linking CXX executable cmTC_71da3 [2/2] Linking CXX executable cmTC_156e3
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers

View File

@ -558,6 +558,13 @@
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install/local.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/rebuild_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install.dir /home/mithras/Documents/bakalarka/build/esp-idf/main/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/ca/CMakeFiles/install/strip.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/edit_cache.dir
/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/__idf_ca.dir /home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/__idf_ca.dir
@ -579,13 +586,6 @@
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.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/local.dir
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.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/install/strip.dir
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.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/__idf_wifi.dir

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -96,3 +96,6 @@
7618 7669 1584721297 esp-idf/main/libmain.a 540777458a2e8b0a 7618 7669 1584721297 esp-idf/main/libmain.a 540777458a2e8b0a
7669 7856 1584721297 bootloader.elf 559c852b4006a53b 7669 7856 1584721297 bootloader.elf 559c852b4006a53b
7856 8808 1584721298 .bin_timestamp cbf29532614689a2 7856 8808 1584721298 .bin_timestamp cbf29532614689a2
4 334 1584808802 bootloader.elf 559c852b4006a53b
334 964 1584808802 .bin_timestamp 978208c277b55428
2 248 1584808895 .bin_timestamp cbf29532614689a2

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -104,10 +104,10 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY)
include("/home/mithras/Documents/bakalarka/build/esp-idf/unity/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/unity/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/main/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/main/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/files/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/ca/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/ca/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/files/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/https_server/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/https_server/cmake_install.cmake")
include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/cmake_install.cmake") include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/cmake_install.cmake")

View File

@ -61,10 +61,10 @@
/home/mithras/Documents/bakalarka/build/esp-idf/unity/libunity.a /home/mithras/Documents/bakalarka/build/esp-idf/unity/libunity.a
/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/libwifi_provisioning.a /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/libwifi_provisioning.a
/home/mithras/Documents/bakalarka/build/esp-idf/main/libmain.a /home/mithras/Documents/bakalarka/build/esp-idf/main/libmain.a
/home/mithras/Documents/bakalarka/build/esp-idf/files/libfiles.a
/home/mithras/Documents/bakalarka/build/esp-idf/ca/libca.a /home/mithras/Documents/bakalarka/build/esp-idf/ca/libca.a
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/libcmd_nvs.a /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/libcmd_nvs.a
/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/libcmd_system.a /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/libcmd_system.a
/home/mithras/Documents/bakalarka/build/esp-idf/files/libfiles.a
/home/mithras/Documents/bakalarka/build/esp-idf/wifi/libwifi.a /home/mithras/Documents/bakalarka/build/esp-idf/wifi/libwifi.a
/home/mithras/Documents/bakalarka/build/esp-idf/https_server/libhttps_server.a /home/mithras/Documents/bakalarka/build/esp-idf/https_server/libhttps_server.a
/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/liblvgl.a /home/mithras/Documents/bakalarka/build/esp-idf/lvgl/liblvgl.a

View File

@ -61,10 +61,10 @@ $<TARGET_FILE:__idf_ulp>
$<TARGET_FILE:__idf_unity> $<TARGET_FILE:__idf_unity>
$<TARGET_FILE:__idf_wifi_provisioning> $<TARGET_FILE:__idf_wifi_provisioning>
$<TARGET_FILE:__idf_main> $<TARGET_FILE:__idf_main>
$<TARGET_FILE:__idf_files>
$<TARGET_FILE:__idf_ca> $<TARGET_FILE:__idf_ca>
$<TARGET_FILE:__idf_cmd_nvs> $<TARGET_FILE:__idf_cmd_nvs>
$<TARGET_FILE:__idf_cmd_system> $<TARGET_FILE:__idf_cmd_system>
$<TARGET_FILE:__idf_files>
$<TARGET_FILE:__idf_wifi> $<TARGET_FILE:__idf_wifi>
$<TARGET_FILE:__idf_https_server> $<TARGET_FILE:__idf_https_server>
$<TARGET_FILE:__idf_lvgl> $<TARGET_FILE:__idf_lvgl>

View File

@ -1351,6 +1351,25 @@ rule CXX_STATIC_LIBRARY_LINKER____idf_main
restat = $RESTAT restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_files
depfile = $DEP_FILE
deps = gcc
command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking CXX static library.
rule CXX_STATIC_LIBRARY_LINKER____idf_files
command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD
description = Linking CXX static library $TARGET_FILE
restat = $RESTAT
############################################# #############################################
# Rule for compiling C files. # Rule for compiling C files.
@ -1408,25 +1427,6 @@ rule CXX_STATIC_LIBRARY_LINKER____idf_cmd_system
restat = $RESTAT restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_files
depfile = $DEP_FILE
deps = gcc
command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking CXX static library.
rule CXX_STATIC_LIBRARY_LINKER____idf_files
command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD
description = Linking CXX static library $TARGET_FILE
restat = $RESTAT
############################################# #############################################
# Rule for compiling C files. # Rule for compiling C files.

View File

@ -1,4 +1,4 @@
idf_component_register(SRCS "ca.c" idf_component_register(SRCS "ca.c"
"gen_key.c" "gen_key.c"
INCLUDE_DIRS . INCLUDE_DIRS .
REQUIRES console mbedtls) REQUIRES console mbedtls files)

View File

@ -18,7 +18,7 @@
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */
#include "file.h"
#if !defined(MBEDTLS_CONFIG_FILE) #if !defined(MBEDTLS_CONFIG_FILE)
#include "mbedtls/config.h" #include "mbedtls/config.h"
#else #else
@ -122,7 +122,7 @@ int dev_random_entropy_poll( void *data, unsigned char *output,
#define DFL_TYPE MBEDTLS_PK_RSA #define DFL_TYPE MBEDTLS_PK_RSA
#define DFL_RSA_KEYSIZE 4096 #define DFL_RSA_KEYSIZE 4096
#define DFL_FILENAME "keyfile.key" #define DFL_FILENAME "/spiffs/keyfile.key"
#define DFL_FORMAT FORMAT_PEM #define DFL_FORMAT FORMAT_PEM
#define DFL_USE_DEV_RANDOM 0 #define DFL_USE_DEV_RANDOM 0
@ -482,7 +482,7 @@ void task_create(const int argc, const char *argv[]){
xTaskCreatePinnedToCore(&task_run,"gen_key",20000,&global_arg,12,NULL,1); xTaskCreatePinnedToCore(&task_run,"gen_key",40000,&global_arg,12,NULL,1);
//xTaskCreate(&task_run,"gen_key",20000,NULL,12,NULL); //xTaskCreate(&task_run,"gen_key",20000,NULL,12,NULL);
} }

View File

@ -21,6 +21,7 @@
#include "nvs_flash.h" #include "nvs_flash.h"
#include "esp_netif.h" #include "esp_netif.h"
#include <esp_event.h> #include <esp_event.h>
#include <file.h>
static const char* TAG = "konzola"; static const char* TAG = "konzola";
@ -40,7 +41,7 @@ static void initialize_filesystem(void)
.max_files = 4, .max_files = 4,
.format_if_mount_failed = true .format_if_mount_failed = true
}; };
esp_err_t err = esp_vfs_fat_spiflash_mount(MOUNT_PATH, "storage", &mount_config, &wl_handle); esp_err_t err = esp_vfs_fat_spiflash_mount(MOUNT_PATH, "storage_fat", &mount_config, &wl_handle);
if (err != ESP_OK) { if (err != ESP_OK) {
ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err)); ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
return; return;
@ -122,6 +123,7 @@ static void initialize_console(void)
void app_main(void) void app_main(void)
{ {
initialize_nvs(); initialize_nvs();
init_memory();
#if CONFIG_STORE_HISTORY #if CONFIG_STORE_HISTORY
initialize_filesystem(); initialize_filesystem();

View File

@ -3,4 +3,5 @@
nvs, data, nvs, 0x9000, 0x6000, nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000, phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 1M, factory, app, factory, 0x10000, 1M,
storage, data, fat, , 1M, storage_fat, data, fat, , 1M,
storage_spiffs, data, spiffs, , 1M,

1 # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x6000,
4 phy_init, data, phy, 0xf000, 0x1000,
5 factory, app, factory, 0x10000, 1M,
6 storage, data, fat, , 1M, storage_fat, data, fat, , 1M,
7 storage_spiffs, data, spiffs, , 1M,