From 1fb264b21185a479433e9ed796f6e3d87438bbb6 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 3 Jan 2025 00:45:33 -0500 Subject: [PATCH] ESP32-C3 RC --- .../CMakeFiles/3.30.3/CMakeASMCompiler.cmake | 28 + .../CMakeFiles/3.30.3/CMakeCCompiler.cmake | 81 ++ .../CMakeFiles/3.30.3/CMakeCXXCompiler.cmake | 101 ++ .../3.30.3/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 1440 bytes .../3.30.3/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 1584 bytes .../build/CMakeFiles/3.30.3/CMakeSystem.cmake | 15 + .../3.30.3/CompilerIdC/CMakeCCompilerId.c | 904 +++++++++++++++++ .../build/CMakeFiles/3.30.3/CompilerIdC/a.out | Bin 0 -> 105208 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 919 ++++++++++++++++++ .../CMakeFiles/3.30.3/CompilerIdCXX/a.out | Bin 0 -> 105272 bytes .../build/CMakeFiles/CMakeConfigureLog.yaml | 531 ++++++++++ .../build/CMakeFiles/git-data/HEAD | 1 + .../build/CMakeFiles/git-data/grabRef.cmake | 50 + .../build/CMakeFiles/git-data/head-ref | 1 + .../build/build_properties.temp.cmake | 31 + .../build/component_properties.temp.cmake | 712 ++++++++++++++ .../build/component_requires.temp.cmake | 318 ++++++ .../build/components_with_manifests_list.temp | 0 18 files changed, 3692 insertions(+) create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeASMCompiler.cmake create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCCompiler.cmake create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake create mode 100755 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_C.bin create mode 100755 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_CXX.bin create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeSystem.cmake create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/CMakeCCompilerId.c create mode 100755 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/a.out create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdCXX/a.out create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/git-data/grabRef.cmake create mode 100644 ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref create mode 100644 ESP-IDF_Robot_RC/build/build_properties.temp.cmake create mode 100644 ESP-IDF_Robot_RC/build/component_properties.temp.cmake create mode 100644 ESP-IDF_Robot_RC/build/component_requires.temp.cmake create mode 100644 ESP-IDF_Robot_RC/build/components_with_manifests_list.temp diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeASMCompiler.cmake b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeASMCompiler.cmake new file mode 100644 index 000000000..cc272009a --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeASMCompiler.cmake @@ -0,0 +1,28 @@ +set(CMAKE_ASM_COMPILER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ar") +set(CMAKE_ASM_COMPILER_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") +set(CMAKE_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) + + diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCCompiler.cmake b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCCompiler.cmake new file mode 100644 index 000000000..6fda9d8cb --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCCompiler.cmake @@ -0,0 +1,81 @@ +set(CMAKE_C_COMPILER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ar") +set(CMAKE_C_COMPILER_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") +set(CMAKE_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..014e169dc --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake @@ -0,0 +1,101 @@ +set(CMAKE_CXX_COMPILER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ar") +set(CMAKE_CXX_COMPILER_AR "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") +set(CMAKE_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_C.bin b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..95b19567598870e9bd09f2fd39315c33f8ec9d6e GIT binary patch literal 1440 zcmb7EJ!lkB5T46jyl5ep_=7=^(+e>HvtBkSOp1{EXCZEi99SITW%uq~T)h49?Muj| zQ4AWev`M3#rKMHCLJ-8pP6cZlJ4NkcbmnfCY~mq0Fgx#?Z|2S0o!NJ%v`~)4Vh~Cn zd;>xfpVMep641fZkcK`Og8@iF9Kd^WkOIXZ8ACg<2NbPh;GiMxr??bA`}U>xa4w@f z-OF5gzLyzI?7v(+wY{C%y8P;zy{P4MjOg%&Y1QyMFGHnJm`#t>h3os$bz2j9CCzQr_{y*8fiIv`iT69~(%uS0AGmx)xrSf5fY)th9t>SbA-9-CI(7u`jZJ9UmU zI&FKcHR)yP9eN4%mn0t8fnWyW*yX6isoN2WLn6rNIur2q*BM-u6UHpA7H~v|)Y9c!<~;?w%)w`#mN+7~(#7i#QYOy7rDHq)WLF^E<0#EGp$v|orYyNe^4z; z$`(Jw;zYp6#(y`HvDKDq8ZG9zmLs_s0mhb!xoVE(OBGFLtXn%W#~6@bTB3PGk}=cw znJ*0?!8R-h9fy(`Zy3@5Iw^qSw{2;dXr<`do8e0G4GD^HJJCwrwQcT@gC_p9YivYN^#*2K=;p8A_5_f zR7IuxEN}zeYvFxHK8hhB8=isiCv?oC(s@syQeB$OlW&2Le?a7GFF_BzNIjZ%&g|Y?O`;CmIp;gychB72`DRwrljEAEfr=1( z2SO6BLzs8#AizTqg%I>YBQ!u5z}q|C0;%d|lm^;kiYg7ZFwv?fT?@eS)9at0y-R;{ z&~@|OL03=R;rqD@>+3CRH+Ft*Z?1iaz}Pz0hufQ7JwF02(nj2?2(o);uowTzUOsy+ z-C^vdkxg4Ko&#je@u^YYUg2($6+9_sV?&SVxMpT*JU1$r85b@u%!*8cO_=FS%8Wz6 z2m5l%k~3EnxR{;HWV4fLmNrwFxQU8@w{rF@{?D`le|`|*l?R|b)3na>A&6q99oN^x zqodcvCYoc34K2~s0HKZDrcf-=3=_%ZXtXykT;G?jTk1C_qTKiT2L^RRk1-==48}%` z;l6040r4b`5w@RS1Z@P%x|VveIB3|0H^3aji?KXiR_welDn*f(^BiexI?h6Az>CpA z{tWU3MYx(9s@@5sJ1D&07+q2mVIX%LM;P5unN;c3!TwPPmNf4YW)0`v!W>0>wTh=O z-$fj)VuATF;^rz|#jMUp6W$`;>ZshM1?TS&ZdEu8Ul6OH=kgI(E&urx{)U+5(=%$r zynl+v)`|U*Qy7x>tS3AfsGYWR{ZWr^2Fh64pU5W1KC+X9TumE4?FVxDW4B^TYm*mNqMjk830B4aX! zI59mD?=xRoLV{!2ctUnk%L|sYfDQ+s`^%2Ba+sy4FDA9AIKkh0^^3^V}+N literal 0 HcmV?d00001 diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeSystem.cmake b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeSystem.cmake new file mode 100644 index 000000000..daa9a40a2 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.11.0-13-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.11.0-13-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +include("/home/abobkov/esp/esp-idf/tools/cmake/toolchain-esp32c3.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) diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/CMakeCCompilerId.c b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..8d8bb038b --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/a.out b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..83162289859625564ef0c0273aff5a10524ecc80 GIT binary patch literal 105208 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 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdCXX/a.out b/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c99b083d8e26f343ce222e7abf9b298e0cba0c69 GIT binary patch literal 105272 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 d-8Y26&tN literal 0 HcmV?d00001 diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeConfigureLog.yaml b/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 000000000..c07a54c54 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,531 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + The target system is: Generic - - + The host system is: Linux - 6.11.0-13-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc + Build flags: -march=rv32imc_zicsr_zifencei + Id flags: + + The output was: + 0 + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0x118): warning: __getreent is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-findfp.o): in function `__sfp': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/findfp.c:180:(.text+0x1ee): warning: pthread_setcancelstate is not implemented and will always fail + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ + Build flags: -march=rv32imc_zicsr_zifencei + Id flags: + + The output was: + 0 + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0x118): warning: __getreent is not implemented and will always fail + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-findfp.o): in function `__sfp': + /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/findfp.c:180:(.text+0x1ee): warning: pthread_setcancelstate is not implemented and will always fail + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/3.30.3/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + riscv32-esp-elf-gcc (crosstool-NG esp-13.2.0_20230928) 13.2.0 + Copyright (C) 2023 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-x3VQQR" + binary: "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-x3VQQR" + cmakeVariables: + CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "/home/abobkov/esp/esp-idf/tools/cmake;/home/abobkov/esp/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-x3VQQR' + + Run Build Command(s): /usr/bin/ninja -v cmTC_01a40 + [1/2] /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 + Supported LTO compression algorithms: zlib + gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ /usr/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01a40.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccnuoJqz.s + GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (riscv32-esp-elf) + compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: 77495f34f76e3c762dece7c39ed79778 + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj /tmp/ccnuoJqz.s + GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20230928) 2.41 + COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/ + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.' + [2/2] : && /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -o cmTC_01a40 && : + Using built-in specs. + Reading specs from /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc + COLLECT_LTO_WRAPPER=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 + Supported LTO compression algorithms: zlib + gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) + COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_01a40' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_01a40.' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccAw9UKZ.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -melf32lriscv -o cmTC_01a40 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074 + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_01a40' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_01a40.' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-x3VQQR'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_01a40] + ignore line: [[1/2] /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/'] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ /usr/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01a40.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccnuoJqz.s] + ignore line: [GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 77495f34f76e3c762dece7c39ed79778] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/'] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj /tmp/ccnuoJqz.s] + ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20230928) 2.41] + ignore line: [COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] : && /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -o cmTC_01a40 && :] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_01a40' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_01a40.'] + link line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccAw9UKZ.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -melf32lriscv -o cmTC_01a40 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib CMakeFiles/cmTC_01a40.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccAw9UKZ.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-o] ==> ignore + arg [cmTC_01a40] ==> ignore + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] + arg [CMakeFiles/cmTC_01a40.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010074] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_01a40' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_01a40.'] + ignore line: [] + ignore line: [] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-1y2Klg" + binary: "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-1y2Klg" + cmakeVariables: + CMAKE_CXX_FLAGS: "-march=rv32imc_zicsr_zifencei " + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " + CMAKE_MODULE_PATH: "/home/abobkov/esp/esp-idf/tools/cmake;/home/abobkov/esp/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-1y2Klg' + + Run Build Command(s): /usr/bin/ninja -v cmTC_b9310 + [1/2] /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 + Supported LTO compression algorithms: zlib + gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b9310.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccHLsnB6.s + GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (riscv32-esp-elf) + compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include" + ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0 + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32 + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include + End of search list. + Compiler executable checksum: 2f922d80f93cca9f059a3573788cba06 + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccHLsnB6.s + GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20230928) 2.41 + COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/ + COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.' + [2/2] : && /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b9310 && : + Using built-in specs. + Reading specs from /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs + rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence + COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ + COLLECT_LTO_WRAPPER=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper + Target: riscv32-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 + Supported LTO compression algorithms: zlib + gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) + COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ + LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/ + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_b9310' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_b9310.' + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cccDq4rA.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -melf32lriscv -o cmTC_b9310 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group + /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010074 + COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_b9310' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_b9310.' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] + add: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] + end of search list found + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include] + collapse include dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include] + implicit include dirs: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include/c++/13.2.0/backward;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/include-fixed;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/sys-include;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "/home/abobkov/esp/esp-idf/tools/cmake/project.cmake:506 (__project)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/CMakeScratch/TryCompile-1y2Klg'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_b9310] + ignore line: [[1/2] /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/'] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/ /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b9310.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccHLsnB6.s] + ignore line: [GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (riscv32-esp-elf)] + ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include/c++/13.2.0/backward] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/include-fixed] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/sys-include] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 2f922d80f93cca9f059a3573788cba06] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/'] + ignore line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccHLsnB6.s] + ignore line: [GNU assembler version 2.41 (riscv32-esp-elf) using BFD version (crosstool-NG esp-13.2.0_20230928) 2.41] + ignore line: [COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] : && /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b9310 && :] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/riscv32-esp-elf-g++] + ignore line: [COLLECT_LTO_WRAPPER=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] + ignore line: [Target: riscv32-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-headers=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/] + ignore line: [LIBRARY_PATH=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/:/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_b9310' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_b9310.'] + link line: [ /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2 -plugin /home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so -plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cccDq4rA.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 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -melf32lriscv -o cmTC_b9310 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0 -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc -L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib CMakeFiles/cmTC_b9310.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] + arg [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/13.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cccDq4rA.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 [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-melf32lriscv] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b9310] ==> ignore + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] + arg [-L/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] + arg [CMakeFiles/cmTC_b9310.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 [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + ignore line: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00010074] + ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_b9310' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_b9310.'] + ignore line: [] + ignore line: [] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc] + collapse library dir [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/13.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys] + implicit objs: [] + implicit dirs: [/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/13.2.0;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/lib/gcc;/home/abobkov/.espressif/tools/riscv32-esp-elf/esp-13.2.0_20230928/riscv32-esp-elf/riscv32-esp-elf/lib] + implicit fwks: [] + + diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD new file mode 100644 index 000000000..b870d8262 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +ref: refs/heads/main diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/grabRef.cmake b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 000000000..e6c6d4888 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/grabRef.cmake @@ -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 +# 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/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "/home/abobkov/MyProjects/ESP-Nodes/.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/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref new file mode 100644 index 000000000..b98111cf5 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +2f281fcb78ab2bd717297455ec88f2fc422c8c16 diff --git a/ESP-IDF_Robot_RC/build/build_properties.temp.cmake b/ESP-IDF_Robot_RC/build/build_properties.temp.cmake new file mode 100644 index 000000000..e84a907fa --- /dev/null +++ b/ESP-IDF_Robot_RC/build/build_properties.temp.cmake @@ -0,0 +1,31 @@ + +set(PYTHON "/home/abobkov/.espressif/python_env/idf5.2_py3.12_env/bin/python") +set(__BUILD_PROPERTIES "PYTHON;__BUILD_PROPERTIES;IDF_PATH;__PREFIX;__CHECK_PYTHON;IDF_COMPONENT_MANAGER;COMPILE_DEFINITIONS;COMPILE_OPTIONS;C_COMPILE_OPTIONS;CXX_COMPILE_OPTIONS;__COMPONENT_TARGETS;BUILD_COMPONENT_DIRS;BUILD_COMPONENT_TARGETS;__COMPONENT_REQUIRES_COMMON;IDF_VER;__ROOT_KCONFIG;__ROOT_SDKCONFIG_RENAME;__OUTPUT_SDKCONFIG;EXTRA_CMAKE_ARGS;__COMPONENT_MANAGER_INTERFACE_VERSION;BOOTLOADER_BUILD;IDF_TOOLCHAIN;IDF_TARGET;IDF_TARGET_ARCH;PROJECT_DIR;PROJECT_NAME;PROJECT_VER;BUILD_DIR;SDKCONFIG;SDKCONFIG_DEFAULTS") +set(IDF_PATH "/home/abobkov/esp/esp-idf") +set(__PREFIX "idf") +set(__CHECK_PYTHON "0") +set(IDF_COMPONENT_MANAGER "1") +set(COMPILE_DEFINITIONS "_GLIBCXX_USE_POSIX_SEMAPHORE;_GLIBCXX_HAVE_POSIX_SEMAPHORE;_GNU_SOURCE;IDF_VER="v5.2.3"") +set(COMPILE_OPTIONS "-ffunction-sections;-fdata-sections;-Wall;-Werror=all;-Wno-error=unused-function;-Wno-error=unused-variable;-Wno-error=unused-but-set-variable;-Wno-error=deprecated-declarations;-Wextra;-Wno-unused-parameter;-Wno-sign-compare;-Wno-enum-conversion;-gdwarf-4;-ggdb") +set(C_COMPILE_OPTIONS "-std=gnu17") +set(CXX_COMPILE_OPTIONS "-std=gnu++2b") +set(__COMPONENT_TARGETS "___idf_app_trace;___idf_app_update;___idf_bootloader;___idf_bootloader_support;___idf_bt;___idf_cmock;___idf_console;___idf_cxx;___idf_driver;___idf_efuse;___idf_esp-tls;___idf_esp_adc;___idf_esp_app_format;___idf_esp_bootloader_format;___idf_esp_coex;___idf_esp_common;___idf_esp_eth;___idf_esp_event;___idf_esp_gdbstub;___idf_esp_hid;___idf_esp_http_client;___idf_esp_http_server;___idf_esp_https_ota;___idf_esp_https_server;___idf_esp_hw_support;___idf_esp_lcd;___idf_esp_local_ctrl;___idf_esp_mm;___idf_esp_netif;___idf_esp_netif_stack;___idf_esp_partition;___idf_esp_phy;___idf_esp_pm;___idf_esp_psram;___idf_esp_ringbuf;___idf_esp_rom;___idf_esp_system;___idf_esp_timer;___idf_esp_wifi;___idf_espcoredump;___idf_esptool_py;___idf_fatfs;___idf_freertos;___idf_hal;___idf_heap;___idf_http_parser;___idf_idf_test;___idf_ieee802154;___idf_json;___idf_linux;___idf_log;___idf_lwip;___idf_mbedtls;___idf_mqtt;___idf_newlib;___idf_nvs_flash;___idf_nvs_sec_provider;___idf_openthread;___idf_partition_table;___idf_perfmon;___idf_protobuf-c;___idf_protocomm;___idf_pthread;___idf_riscv;___idf_sdmmc;___idf_soc;___idf_spi_flash;___idf_spiffs;___idf_tcp_transport;___idf_touch_element;___idf_ulp;___idf_unity;___idf_usb;___idf_vfs;___idf_wear_levelling;___idf_wifi_provisioning;___idf_wpa_supplicant;___idf_xtensa;___idf_main") +set(BUILD_COMPONENT_DIRS "/home/abobkov/esp/esp-idf/components/app_trace;/home/abobkov/esp/esp-idf/components/app_update;/home/abobkov/esp/esp-idf/components/bootloader;/home/abobkov/esp/esp-idf/components/bootloader_support;/home/abobkov/esp/esp-idf/components/bt;/home/abobkov/esp/esp-idf/components/cmock;/home/abobkov/esp/esp-idf/components/console;/home/abobkov/esp/esp-idf/components/cxx;/home/abobkov/esp/esp-idf/components/driver;/home/abobkov/esp/esp-idf/components/efuse;/home/abobkov/esp/esp-idf/components/esp-tls;/home/abobkov/esp/esp-idf/components/esp_adc;/home/abobkov/esp/esp-idf/components/esp_app_format;/home/abobkov/esp/esp-idf/components/esp_bootloader_format;/home/abobkov/esp/esp-idf/components/esp_coex;/home/abobkov/esp/esp-idf/components/esp_common;/home/abobkov/esp/esp-idf/components/esp_eth;/home/abobkov/esp/esp-idf/components/esp_event;/home/abobkov/esp/esp-idf/components/esp_gdbstub;/home/abobkov/esp/esp-idf/components/esp_hid;/home/abobkov/esp/esp-idf/components/esp_http_client;/home/abobkov/esp/esp-idf/components/esp_http_server;/home/abobkov/esp/esp-idf/components/esp_https_ota;/home/abobkov/esp/esp-idf/components/esp_https_server;/home/abobkov/esp/esp-idf/components/esp_hw_support;/home/abobkov/esp/esp-idf/components/esp_lcd;/home/abobkov/esp/esp-idf/components/esp_local_ctrl;/home/abobkov/esp/esp-idf/components/esp_mm;/home/abobkov/esp/esp-idf/components/esp_netif;/home/abobkov/esp/esp-idf/components/esp_netif_stack;/home/abobkov/esp/esp-idf/components/esp_partition;/home/abobkov/esp/esp-idf/components/esp_phy;/home/abobkov/esp/esp-idf/components/esp_pm;/home/abobkov/esp/esp-idf/components/esp_psram;/home/abobkov/esp/esp-idf/components/esp_ringbuf;/home/abobkov/esp/esp-idf/components/esp_rom;/home/abobkov/esp/esp-idf/components/esp_system;/home/abobkov/esp/esp-idf/components/esp_timer;/home/abobkov/esp/esp-idf/components/esp_wifi;/home/abobkov/esp/esp-idf/components/espcoredump;/home/abobkov/esp/esp-idf/components/esptool_py;/home/abobkov/esp/esp-idf/components/fatfs;/home/abobkov/esp/esp-idf/components/freertos;/home/abobkov/esp/esp-idf/components/hal;/home/abobkov/esp/esp-idf/components/heap;/home/abobkov/esp/esp-idf/components/http_parser;/home/abobkov/esp/esp-idf/components/idf_test;/home/abobkov/esp/esp-idf/components/ieee802154;/home/abobkov/esp/esp-idf/components/json;/home/abobkov/esp/esp-idf/components/linux;/home/abobkov/esp/esp-idf/components/log;/home/abobkov/esp/esp-idf/components/lwip;/home/abobkov/esp/esp-idf/components/mbedtls;/home/abobkov/esp/esp-idf/components/mqtt;/home/abobkov/esp/esp-idf/components/newlib;/home/abobkov/esp/esp-idf/components/nvs_flash;/home/abobkov/esp/esp-idf/components/nvs_sec_provider;/home/abobkov/esp/esp-idf/components/openthread;/home/abobkov/esp/esp-idf/components/partition_table;/home/abobkov/esp/esp-idf/components/perfmon;/home/abobkov/esp/esp-idf/components/protobuf-c;/home/abobkov/esp/esp-idf/components/protocomm;/home/abobkov/esp/esp-idf/components/pthread;/home/abobkov/esp/esp-idf/components/riscv;/home/abobkov/esp/esp-idf/components/sdmmc;/home/abobkov/esp/esp-idf/components/soc;/home/abobkov/esp/esp-idf/components/spi_flash;/home/abobkov/esp/esp-idf/components/spiffs;/home/abobkov/esp/esp-idf/components/tcp_transport;/home/abobkov/esp/esp-idf/components/touch_element;/home/abobkov/esp/esp-idf/components/ulp;/home/abobkov/esp/esp-idf/components/unity;/home/abobkov/esp/esp-idf/components/usb;/home/abobkov/esp/esp-idf/components/vfs;/home/abobkov/esp/esp-idf/components/wear_levelling;/home/abobkov/esp/esp-idf/components/wifi_provisioning;/home/abobkov/esp/esp-idf/components/wpa_supplicant;/home/abobkov/esp/esp-idf/components/xtensa;/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/main") +set(BUILD_COMPONENT_TARGETS "___idf_app_trace;___idf_app_update;___idf_bootloader;___idf_bootloader_support;___idf_bt;___idf_cmock;___idf_console;___idf_cxx;___idf_driver;___idf_efuse;___idf_esp-tls;___idf_esp_adc;___idf_esp_app_format;___idf_esp_bootloader_format;___idf_esp_coex;___idf_esp_common;___idf_esp_eth;___idf_esp_event;___idf_esp_gdbstub;___idf_esp_hid;___idf_esp_http_client;___idf_esp_http_server;___idf_esp_https_ota;___idf_esp_https_server;___idf_esp_hw_support;___idf_esp_lcd;___idf_esp_local_ctrl;___idf_esp_mm;___idf_esp_netif;___idf_esp_netif_stack;___idf_esp_partition;___idf_esp_phy;___idf_esp_pm;___idf_esp_psram;___idf_esp_ringbuf;___idf_esp_rom;___idf_esp_system;___idf_esp_timer;___idf_esp_wifi;___idf_espcoredump;___idf_esptool_py;___idf_fatfs;___idf_freertos;___idf_hal;___idf_heap;___idf_http_parser;___idf_idf_test;___idf_ieee802154;___idf_json;___idf_linux;___idf_log;___idf_lwip;___idf_mbedtls;___idf_mqtt;___idf_newlib;___idf_nvs_flash;___idf_nvs_sec_provider;___idf_openthread;___idf_partition_table;___idf_perfmon;___idf_protobuf-c;___idf_protocomm;___idf_pthread;___idf_riscv;___idf_sdmmc;___idf_soc;___idf_spi_flash;___idf_spiffs;___idf_tcp_transport;___idf_touch_element;___idf_ulp;___idf_unity;___idf_usb;___idf_vfs;___idf_wear_levelling;___idf_wifi_provisioning;___idf_wpa_supplicant;___idf_xtensa;___idf_main") +set(__COMPONENT_REQUIRES_COMMON "cxx;newlib;freertos;esp_hw_support;heap;log;soc;hal;esp_rom;esp_common;esp_system;riscv") +set(IDF_VER "v5.2.3") +set(__ROOT_KCONFIG "/home/abobkov/esp/esp-idf/Kconfig") +set(__ROOT_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/sdkconfig.rename") +set(__OUTPUT_SDKCONFIG "1") +set(EXTRA_CMAKE_ARGS "") +set(__COMPONENT_MANAGER_INTERFACE_VERSION "2") +set(BOOTLOADER_BUILD "") +set(IDF_TOOLCHAIN "gcc") +set(IDF_TARGET "esp32c3") +set(IDF_TARGET_ARCH "riscv") +set(PROJECT_DIR "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC") +set(PROJECT_NAME "ESP-IDF_Robot_RC") +set(PROJECT_VER "ESP32-Node_Switch-v2.7-2090-g2f281fcb") +set(BUILD_DIR "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build") +set(SDKCONFIG "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/sdkconfig") +set(SDKCONFIG_DEFAULTS "") \ No newline at end of file diff --git a/ESP-IDF_Robot_RC/build/component_properties.temp.cmake b/ESP-IDF_Robot_RC/build/component_properties.temp.cmake new file mode 100644 index 000000000..0feaddfa9 --- /dev/null +++ b/ESP-IDF_Robot_RC/build/component_properties.temp.cmake @@ -0,0 +1,712 @@ + +set(__component____idf_app_trace_COMPONENT_LIB "__idf_app_trace") +set(__component____idf_app_trace___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_app_trace_COMPONENT_NAME "app_trace") +set(__component____idf_app_trace_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/app_trace") +set(__component____idf_app_trace_COMPONENT_ALIAS "idf::app_trace") +set(__component____idf_app_trace___PREFIX "idf") +set(__component____idf_app_trace_KCONFIG "/home/abobkov/esp/esp-idf/components/app_trace/Kconfig") +set(__component____idf_app_trace_KCONFIG_PROJBUILD "") +set(__component____idf_app_trace_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/app_trace/sdkconfig.rename") +set(__component____idf_app_update_COMPONENT_LIB "__idf_app_update") +set(__component____idf_app_update___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_app_update_COMPONENT_NAME "app_update") +set(__component____idf_app_update_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/app_update") +set(__component____idf_app_update_COMPONENT_ALIAS "idf::app_update") +set(__component____idf_app_update___PREFIX "idf") +set(__component____idf_app_update_KCONFIG "") +set(__component____idf_app_update_KCONFIG_PROJBUILD "") +set(__component____idf_app_update_SDKCONFIG_RENAME "") +set(__component____idf_bootloader_COMPONENT_LIB "__idf_bootloader") +set(__component____idf_bootloader___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_bootloader_COMPONENT_NAME "bootloader") +set(__component____idf_bootloader_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/bootloader") +set(__component____idf_bootloader_COMPONENT_ALIAS "idf::bootloader") +set(__component____idf_bootloader___PREFIX "idf") +set(__component____idf_bootloader_KCONFIG "") +set(__component____idf_bootloader_KCONFIG_PROJBUILD "/home/abobkov/esp/esp-idf/components/bootloader/Kconfig.projbuild") +set(__component____idf_bootloader_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/bootloader/sdkconfig.rename") +set(__component____idf_bootloader_support_COMPONENT_LIB "__idf_bootloader_support") +set(__component____idf_bootloader_support___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_bootloader_support_COMPONENT_NAME "bootloader_support") +set(__component____idf_bootloader_support_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/bootloader_support") +set(__component____idf_bootloader_support_COMPONENT_ALIAS "idf::bootloader_support") +set(__component____idf_bootloader_support___PREFIX "idf") +set(__component____idf_bootloader_support_KCONFIG "") +set(__component____idf_bootloader_support_KCONFIG_PROJBUILD "") +set(__component____idf_bootloader_support_SDKCONFIG_RENAME "") +set(__component____idf_bt_COMPONENT_LIB "__idf_bt") +set(__component____idf_bt___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_bt_COMPONENT_NAME "bt") +set(__component____idf_bt_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/bt") +set(__component____idf_bt_COMPONENT_ALIAS "idf::bt") +set(__component____idf_bt___PREFIX "idf") +set(__component____idf_bt_KCONFIG "/home/abobkov/esp/esp-idf/components/bt/Kconfig") +set(__component____idf_bt_KCONFIG_PROJBUILD "") +set(__component____idf_bt_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/bt/sdkconfig.rename;/home/abobkov/esp/esp-idf/components/bt/sdkconfig.rename.esp32c3") +set(__component____idf_cmock_COMPONENT_LIB "__idf_cmock") +set(__component____idf_cmock___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_cmock_COMPONENT_NAME "cmock") +set(__component____idf_cmock_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/cmock") +set(__component____idf_cmock_COMPONENT_ALIAS "idf::cmock") +set(__component____idf_cmock___PREFIX "idf") +set(__component____idf_cmock_KCONFIG "") +set(__component____idf_cmock_KCONFIG_PROJBUILD "") +set(__component____idf_cmock_SDKCONFIG_RENAME "") +set(__component____idf_console_COMPONENT_LIB "__idf_console") +set(__component____idf_console___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_console_COMPONENT_NAME "console") +set(__component____idf_console_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/console") +set(__component____idf_console_COMPONENT_ALIAS "idf::console") +set(__component____idf_console___PREFIX "idf") +set(__component____idf_console_KCONFIG "") +set(__component____idf_console_KCONFIG_PROJBUILD "") +set(__component____idf_console_SDKCONFIG_RENAME "") +set(__component____idf_cxx_COMPONENT_LIB "__idf_cxx") +set(__component____idf_cxx___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_cxx_COMPONENT_NAME "cxx") +set(__component____idf_cxx_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/cxx") +set(__component____idf_cxx_COMPONENT_ALIAS "idf::cxx") +set(__component____idf_cxx___PREFIX "idf") +set(__component____idf_cxx_KCONFIG "") +set(__component____idf_cxx_KCONFIG_PROJBUILD "") +set(__component____idf_cxx_SDKCONFIG_RENAME "") +set(__component____idf_driver_COMPONENT_LIB "__idf_driver") +set(__component____idf_driver___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_driver_COMPONENT_NAME "driver") +set(__component____idf_driver_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/driver") +set(__component____idf_driver_COMPONENT_ALIAS "idf::driver") +set(__component____idf_driver___PREFIX "idf") +set(__component____idf_driver_KCONFIG "/home/abobkov/esp/esp-idf/components/driver/Kconfig") +set(__component____idf_driver_KCONFIG_PROJBUILD "") +set(__component____idf_driver_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/driver/sdkconfig.rename") +set(__component____idf_efuse_COMPONENT_LIB "__idf_efuse") +set(__component____idf_efuse___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_efuse_COMPONENT_NAME "efuse") +set(__component____idf_efuse_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/efuse") +set(__component____idf_efuse_COMPONENT_ALIAS "idf::efuse") +set(__component____idf_efuse___PREFIX "idf") +set(__component____idf_efuse_KCONFIG "/home/abobkov/esp/esp-idf/components/efuse/Kconfig") +set(__component____idf_efuse_KCONFIG_PROJBUILD "") +set(__component____idf_efuse_SDKCONFIG_RENAME "") +set(__component____idf_esp-tls_COMPONENT_LIB "__idf_esp-tls") +set(__component____idf_esp-tls___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp-tls_COMPONENT_NAME "esp-tls") +set(__component____idf_esp-tls_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp-tls") +set(__component____idf_esp-tls_COMPONENT_ALIAS "idf::esp-tls") +set(__component____idf_esp-tls___PREFIX "idf") +set(__component____idf_esp-tls_KCONFIG "/home/abobkov/esp/esp-idf/components/esp-tls/Kconfig") +set(__component____idf_esp-tls_KCONFIG_PROJBUILD "") +set(__component____idf_esp-tls_SDKCONFIG_RENAME "") +set(__component____idf_esp_adc_COMPONENT_LIB "__idf_esp_adc") +set(__component____idf_esp_adc___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_adc_COMPONENT_NAME "esp_adc") +set(__component____idf_esp_adc_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_adc") +set(__component____idf_esp_adc_COMPONENT_ALIAS "idf::esp_adc") +set(__component____idf_esp_adc___PREFIX "idf") +set(__component____idf_esp_adc_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_adc/Kconfig") +set(__component____idf_esp_adc_KCONFIG_PROJBUILD "") +set(__component____idf_esp_adc_SDKCONFIG_RENAME "") +set(__component____idf_esp_app_format_COMPONENT_LIB "__idf_esp_app_format") +set(__component____idf_esp_app_format___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_app_format_COMPONENT_NAME "esp_app_format") +set(__component____idf_esp_app_format_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_app_format") +set(__component____idf_esp_app_format_COMPONENT_ALIAS "idf::esp_app_format") +set(__component____idf_esp_app_format___PREFIX "idf") +set(__component____idf_esp_app_format_KCONFIG "") +set(__component____idf_esp_app_format_KCONFIG_PROJBUILD "/home/abobkov/esp/esp-idf/components/esp_app_format/Kconfig.projbuild") +set(__component____idf_esp_app_format_SDKCONFIG_RENAME "") +set(__component____idf_esp_bootloader_format_COMPONENT_LIB "__idf_esp_bootloader_format") +set(__component____idf_esp_bootloader_format___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_bootloader_format_COMPONENT_NAME "esp_bootloader_format") +set(__component____idf_esp_bootloader_format_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_bootloader_format") +set(__component____idf_esp_bootloader_format_COMPONENT_ALIAS "idf::esp_bootloader_format") +set(__component____idf_esp_bootloader_format___PREFIX "idf") +set(__component____idf_esp_bootloader_format_KCONFIG "") +set(__component____idf_esp_bootloader_format_KCONFIG_PROJBUILD "") +set(__component____idf_esp_bootloader_format_SDKCONFIG_RENAME "") +set(__component____idf_esp_coex_COMPONENT_LIB "__idf_esp_coex") +set(__component____idf_esp_coex___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_coex_COMPONENT_NAME "esp_coex") +set(__component____idf_esp_coex_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_coex") +set(__component____idf_esp_coex_COMPONENT_ALIAS "idf::esp_coex") +set(__component____idf_esp_coex___PREFIX "idf") +set(__component____idf_esp_coex_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_coex/Kconfig") +set(__component____idf_esp_coex_KCONFIG_PROJBUILD "") +set(__component____idf_esp_coex_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_coex/sdkconfig.rename") +set(__component____idf_esp_common_COMPONENT_LIB "__idf_esp_common") +set(__component____idf_esp_common___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_common_COMPONENT_NAME "esp_common") +set(__component____idf_esp_common_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_common") +set(__component____idf_esp_common_COMPONENT_ALIAS "idf::esp_common") +set(__component____idf_esp_common___PREFIX "idf") +set(__component____idf_esp_common_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_common/Kconfig") +set(__component____idf_esp_common_KCONFIG_PROJBUILD "") +set(__component____idf_esp_common_SDKCONFIG_RENAME "") +set(__component____idf_esp_eth_COMPONENT_LIB "__idf_esp_eth") +set(__component____idf_esp_eth___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_eth_COMPONENT_NAME "esp_eth") +set(__component____idf_esp_eth_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_eth") +set(__component____idf_esp_eth_COMPONENT_ALIAS "idf::esp_eth") +set(__component____idf_esp_eth___PREFIX "idf") +set(__component____idf_esp_eth_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_eth/Kconfig") +set(__component____idf_esp_eth_KCONFIG_PROJBUILD "") +set(__component____idf_esp_eth_SDKCONFIG_RENAME "") +set(__component____idf_esp_event_COMPONENT_LIB "__idf_esp_event") +set(__component____idf_esp_event___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_event_COMPONENT_NAME "esp_event") +set(__component____idf_esp_event_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_event") +set(__component____idf_esp_event_COMPONENT_ALIAS "idf::esp_event") +set(__component____idf_esp_event___PREFIX "idf") +set(__component____idf_esp_event_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_event/Kconfig") +set(__component____idf_esp_event_KCONFIG_PROJBUILD "") +set(__component____idf_esp_event_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_event/sdkconfig.rename") +set(__component____idf_esp_gdbstub_COMPONENT_LIB "__idf_esp_gdbstub") +set(__component____idf_esp_gdbstub___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_gdbstub_COMPONENT_NAME "esp_gdbstub") +set(__component____idf_esp_gdbstub_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_gdbstub") +set(__component____idf_esp_gdbstub_COMPONENT_ALIAS "idf::esp_gdbstub") +set(__component____idf_esp_gdbstub___PREFIX "idf") +set(__component____idf_esp_gdbstub_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_gdbstub/Kconfig") +set(__component____idf_esp_gdbstub_KCONFIG_PROJBUILD "") +set(__component____idf_esp_gdbstub_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_gdbstub/sdkconfig.rename") +set(__component____idf_esp_hid_COMPONENT_LIB "__idf_esp_hid") +set(__component____idf_esp_hid___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_hid_COMPONENT_NAME "esp_hid") +set(__component____idf_esp_hid_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_hid") +set(__component____idf_esp_hid_COMPONENT_ALIAS "idf::esp_hid") +set(__component____idf_esp_hid___PREFIX "idf") +set(__component____idf_esp_hid_KCONFIG "") +set(__component____idf_esp_hid_KCONFIG_PROJBUILD "") +set(__component____idf_esp_hid_SDKCONFIG_RENAME "") +set(__component____idf_esp_http_client_COMPONENT_LIB "__idf_esp_http_client") +set(__component____idf_esp_http_client___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_http_client_COMPONENT_NAME "esp_http_client") +set(__component____idf_esp_http_client_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_http_client") +set(__component____idf_esp_http_client_COMPONENT_ALIAS "idf::esp_http_client") +set(__component____idf_esp_http_client___PREFIX "idf") +set(__component____idf_esp_http_client_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_http_client/Kconfig") +set(__component____idf_esp_http_client_KCONFIG_PROJBUILD "") +set(__component____idf_esp_http_client_SDKCONFIG_RENAME "") +set(__component____idf_esp_http_server_COMPONENT_LIB "__idf_esp_http_server") +set(__component____idf_esp_http_server___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_http_server_COMPONENT_NAME "esp_http_server") +set(__component____idf_esp_http_server_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_http_server") +set(__component____idf_esp_http_server_COMPONENT_ALIAS "idf::esp_http_server") +set(__component____idf_esp_http_server___PREFIX "idf") +set(__component____idf_esp_http_server_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_http_server/Kconfig") +set(__component____idf_esp_http_server_KCONFIG_PROJBUILD "") +set(__component____idf_esp_http_server_SDKCONFIG_RENAME "") +set(__component____idf_esp_https_ota_COMPONENT_LIB "__idf_esp_https_ota") +set(__component____idf_esp_https_ota___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_https_ota_COMPONENT_NAME "esp_https_ota") +set(__component____idf_esp_https_ota_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_https_ota") +set(__component____idf_esp_https_ota_COMPONENT_ALIAS "idf::esp_https_ota") +set(__component____idf_esp_https_ota___PREFIX "idf") +set(__component____idf_esp_https_ota_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_https_ota/Kconfig") +set(__component____idf_esp_https_ota_KCONFIG_PROJBUILD "") +set(__component____idf_esp_https_ota_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_https_ota/sdkconfig.rename") +set(__component____idf_esp_https_server_COMPONENT_LIB "__idf_esp_https_server") +set(__component____idf_esp_https_server___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_https_server_COMPONENT_NAME "esp_https_server") +set(__component____idf_esp_https_server_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_https_server") +set(__component____idf_esp_https_server_COMPONENT_ALIAS "idf::esp_https_server") +set(__component____idf_esp_https_server___PREFIX "idf") +set(__component____idf_esp_https_server_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_https_server/Kconfig") +set(__component____idf_esp_https_server_KCONFIG_PROJBUILD "") +set(__component____idf_esp_https_server_SDKCONFIG_RENAME "") +set(__component____idf_esp_hw_support_COMPONENT_LIB "__idf_esp_hw_support") +set(__component____idf_esp_hw_support___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_hw_support_COMPONENT_NAME "esp_hw_support") +set(__component____idf_esp_hw_support_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_hw_support") +set(__component____idf_esp_hw_support_COMPONENT_ALIAS "idf::esp_hw_support") +set(__component____idf_esp_hw_support___PREFIX "idf") +set(__component____idf_esp_hw_support_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_hw_support/Kconfig") +set(__component____idf_esp_hw_support_KCONFIG_PROJBUILD "") +set(__component____idf_esp_hw_support_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_hw_support/sdkconfig.rename;/home/abobkov/esp/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32c3") +set(__component____idf_esp_lcd_COMPONENT_LIB "__idf_esp_lcd") +set(__component____idf_esp_lcd___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_lcd_COMPONENT_NAME "esp_lcd") +set(__component____idf_esp_lcd_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_lcd") +set(__component____idf_esp_lcd_COMPONENT_ALIAS "idf::esp_lcd") +set(__component____idf_esp_lcd___PREFIX "idf") +set(__component____idf_esp_lcd_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_lcd/Kconfig") +set(__component____idf_esp_lcd_KCONFIG_PROJBUILD "") +set(__component____idf_esp_lcd_SDKCONFIG_RENAME "") +set(__component____idf_esp_local_ctrl_COMPONENT_LIB "__idf_esp_local_ctrl") +set(__component____idf_esp_local_ctrl___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_local_ctrl_COMPONENT_NAME "esp_local_ctrl") +set(__component____idf_esp_local_ctrl_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_local_ctrl") +set(__component____idf_esp_local_ctrl_COMPONENT_ALIAS "idf::esp_local_ctrl") +set(__component____idf_esp_local_ctrl___PREFIX "idf") +set(__component____idf_esp_local_ctrl_KCONFIG "") +set(__component____idf_esp_local_ctrl_KCONFIG_PROJBUILD "") +set(__component____idf_esp_local_ctrl_SDKCONFIG_RENAME "") +set(__component____idf_esp_mm_COMPONENT_LIB "__idf_esp_mm") +set(__component____idf_esp_mm___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_mm_COMPONENT_NAME "esp_mm") +set(__component____idf_esp_mm_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_mm") +set(__component____idf_esp_mm_COMPONENT_ALIAS "idf::esp_mm") +set(__component____idf_esp_mm___PREFIX "idf") +set(__component____idf_esp_mm_KCONFIG "") +set(__component____idf_esp_mm_KCONFIG_PROJBUILD "") +set(__component____idf_esp_mm_SDKCONFIG_RENAME "") +set(__component____idf_esp_netif_COMPONENT_LIB "__idf_esp_netif") +set(__component____idf_esp_netif___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_netif_COMPONENT_NAME "esp_netif") +set(__component____idf_esp_netif_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_netif") +set(__component____idf_esp_netif_COMPONENT_ALIAS "idf::esp_netif") +set(__component____idf_esp_netif___PREFIX "idf") +set(__component____idf_esp_netif_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_netif/Kconfig") +set(__component____idf_esp_netif_KCONFIG_PROJBUILD "") +set(__component____idf_esp_netif_SDKCONFIG_RENAME "") +set(__component____idf_esp_netif_stack_COMPONENT_LIB "__idf_esp_netif_stack") +set(__component____idf_esp_netif_stack___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_netif_stack_COMPONENT_NAME "esp_netif_stack") +set(__component____idf_esp_netif_stack_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_netif_stack") +set(__component____idf_esp_netif_stack_COMPONENT_ALIAS "idf::esp_netif_stack") +set(__component____idf_esp_netif_stack___PREFIX "idf") +set(__component____idf_esp_netif_stack_KCONFIG "") +set(__component____idf_esp_netif_stack_KCONFIG_PROJBUILD "") +set(__component____idf_esp_netif_stack_SDKCONFIG_RENAME "") +set(__component____idf_esp_partition_COMPONENT_LIB "__idf_esp_partition") +set(__component____idf_esp_partition___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_partition_COMPONENT_NAME "esp_partition") +set(__component____idf_esp_partition_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_partition") +set(__component____idf_esp_partition_COMPONENT_ALIAS "idf::esp_partition") +set(__component____idf_esp_partition___PREFIX "idf") +set(__component____idf_esp_partition_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_partition/Kconfig") +set(__component____idf_esp_partition_KCONFIG_PROJBUILD "") +set(__component____idf_esp_partition_SDKCONFIG_RENAME "") +set(__component____idf_esp_phy_COMPONENT_LIB "__idf_esp_phy") +set(__component____idf_esp_phy___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_phy_COMPONENT_NAME "esp_phy") +set(__component____idf_esp_phy_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_phy") +set(__component____idf_esp_phy_COMPONENT_ALIAS "idf::esp_phy") +set(__component____idf_esp_phy___PREFIX "idf") +set(__component____idf_esp_phy_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_phy/Kconfig") +set(__component____idf_esp_phy_KCONFIG_PROJBUILD "") +set(__component____idf_esp_phy_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_phy/sdkconfig.rename") +set(__component____idf_esp_pm_COMPONENT_LIB "__idf_esp_pm") +set(__component____idf_esp_pm___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_pm_COMPONENT_NAME "esp_pm") +set(__component____idf_esp_pm_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_pm") +set(__component____idf_esp_pm_COMPONENT_ALIAS "idf::esp_pm") +set(__component____idf_esp_pm___PREFIX "idf") +set(__component____idf_esp_pm_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_pm/Kconfig") +set(__component____idf_esp_pm_KCONFIG_PROJBUILD "") +set(__component____idf_esp_pm_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_pm/sdkconfig.rename") +set(__component____idf_esp_psram_COMPONENT_LIB "__idf_esp_psram") +set(__component____idf_esp_psram___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_psram_COMPONENT_NAME "esp_psram") +set(__component____idf_esp_psram_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_psram") +set(__component____idf_esp_psram_COMPONENT_ALIAS "idf::esp_psram") +set(__component____idf_esp_psram___PREFIX "idf") +set(__component____idf_esp_psram_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_psram/Kconfig") +set(__component____idf_esp_psram_KCONFIG_PROJBUILD "") +set(__component____idf_esp_psram_SDKCONFIG_RENAME "") +set(__component____idf_esp_ringbuf_COMPONENT_LIB "__idf_esp_ringbuf") +set(__component____idf_esp_ringbuf___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_ringbuf_COMPONENT_NAME "esp_ringbuf") +set(__component____idf_esp_ringbuf_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_ringbuf") +set(__component____idf_esp_ringbuf_COMPONENT_ALIAS "idf::esp_ringbuf") +set(__component____idf_esp_ringbuf___PREFIX "idf") +set(__component____idf_esp_ringbuf_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_ringbuf/Kconfig") +set(__component____idf_esp_ringbuf_KCONFIG_PROJBUILD "") +set(__component____idf_esp_ringbuf_SDKCONFIG_RENAME "") +set(__component____idf_esp_rom_COMPONENT_LIB "__idf_esp_rom") +set(__component____idf_esp_rom___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_rom_COMPONENT_NAME "esp_rom") +set(__component____idf_esp_rom_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_rom") +set(__component____idf_esp_rom_COMPONENT_ALIAS "idf::esp_rom") +set(__component____idf_esp_rom___PREFIX "idf") +set(__component____idf_esp_rom_KCONFIG "") +set(__component____idf_esp_rom_KCONFIG_PROJBUILD "/home/abobkov/esp/esp-idf/components/esp_rom/Kconfig.projbuild") +set(__component____idf_esp_rom_SDKCONFIG_RENAME "") +set(__component____idf_esp_system_COMPONENT_LIB "__idf_esp_system") +set(__component____idf_esp_system___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_system_COMPONENT_NAME "esp_system") +set(__component____idf_esp_system_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_system") +set(__component____idf_esp_system_COMPONENT_ALIAS "idf::esp_system") +set(__component____idf_esp_system___PREFIX "idf") +set(__component____idf_esp_system_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_system/Kconfig") +set(__component____idf_esp_system_KCONFIG_PROJBUILD "") +set(__component____idf_esp_system_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_system/sdkconfig.rename;/home/abobkov/esp/esp-idf/components/esp_system/sdkconfig.rename.esp32c3") +set(__component____idf_esp_timer_COMPONENT_LIB "__idf_esp_timer") +set(__component____idf_esp_timer___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_timer_COMPONENT_NAME "esp_timer") +set(__component____idf_esp_timer_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_timer") +set(__component____idf_esp_timer_COMPONENT_ALIAS "idf::esp_timer") +set(__component____idf_esp_timer___PREFIX "idf") +set(__component____idf_esp_timer_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_timer/Kconfig") +set(__component____idf_esp_timer_KCONFIG_PROJBUILD "") +set(__component____idf_esp_timer_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_timer/sdkconfig.rename") +set(__component____idf_esp_wifi_COMPONENT_LIB "__idf_esp_wifi") +set(__component____idf_esp_wifi___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esp_wifi_COMPONENT_NAME "esp_wifi") +set(__component____idf_esp_wifi_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esp_wifi") +set(__component____idf_esp_wifi_COMPONENT_ALIAS "idf::esp_wifi") +set(__component____idf_esp_wifi___PREFIX "idf") +set(__component____idf_esp_wifi_KCONFIG "/home/abobkov/esp/esp-idf/components/esp_wifi/Kconfig") +set(__component____idf_esp_wifi_KCONFIG_PROJBUILD "") +set(__component____idf_esp_wifi_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esp_wifi/sdkconfig.rename") +set(__component____idf_espcoredump_COMPONENT_LIB "__idf_espcoredump") +set(__component____idf_espcoredump___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_espcoredump_COMPONENT_NAME "espcoredump") +set(__component____idf_espcoredump_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/espcoredump") +set(__component____idf_espcoredump_COMPONENT_ALIAS "idf::espcoredump") +set(__component____idf_espcoredump___PREFIX "idf") +set(__component____idf_espcoredump_KCONFIG "/home/abobkov/esp/esp-idf/components/espcoredump/Kconfig") +set(__component____idf_espcoredump_KCONFIG_PROJBUILD "") +set(__component____idf_espcoredump_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/espcoredump/sdkconfig.rename") +set(__component____idf_esptool_py_COMPONENT_LIB "__idf_esptool_py") +set(__component____idf_esptool_py___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_esptool_py_COMPONENT_NAME "esptool_py") +set(__component____idf_esptool_py_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/esptool_py") +set(__component____idf_esptool_py_COMPONENT_ALIAS "idf::esptool_py") +set(__component____idf_esptool_py___PREFIX "idf") +set(__component____idf_esptool_py_KCONFIG "") +set(__component____idf_esptool_py_KCONFIG_PROJBUILD "/home/abobkov/esp/esp-idf/components/esptool_py/Kconfig.projbuild") +set(__component____idf_esptool_py_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/esptool_py/sdkconfig.rename") +set(__component____idf_fatfs_COMPONENT_LIB "__idf_fatfs") +set(__component____idf_fatfs___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_fatfs_COMPONENT_NAME "fatfs") +set(__component____idf_fatfs_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/fatfs") +set(__component____idf_fatfs_COMPONENT_ALIAS "idf::fatfs") +set(__component____idf_fatfs___PREFIX "idf") +set(__component____idf_fatfs_KCONFIG "/home/abobkov/esp/esp-idf/components/fatfs/Kconfig") +set(__component____idf_fatfs_KCONFIG_PROJBUILD "") +set(__component____idf_fatfs_SDKCONFIG_RENAME "") +set(__component____idf_freertos_COMPONENT_LIB "__idf_freertos") +set(__component____idf_freertos___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_freertos_COMPONENT_NAME "freertos") +set(__component____idf_freertos_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/freertos") +set(__component____idf_freertos_COMPONENT_ALIAS "idf::freertos") +set(__component____idf_freertos___PREFIX "idf") +set(__component____idf_freertos_KCONFIG "/home/abobkov/esp/esp-idf/components/freertos/Kconfig") +set(__component____idf_freertos_KCONFIG_PROJBUILD "") +set(__component____idf_freertos_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/freertos/sdkconfig.rename") +set(__component____idf_hal_COMPONENT_LIB "__idf_hal") +set(__component____idf_hal___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_hal_COMPONENT_NAME "hal") +set(__component____idf_hal_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/hal") +set(__component____idf_hal_COMPONENT_ALIAS "idf::hal") +set(__component____idf_hal___PREFIX "idf") +set(__component____idf_hal_KCONFIG "/home/abobkov/esp/esp-idf/components/hal/Kconfig") +set(__component____idf_hal_KCONFIG_PROJBUILD "") +set(__component____idf_hal_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/hal/sdkconfig.rename") +set(__component____idf_heap_COMPONENT_LIB "__idf_heap") +set(__component____idf_heap___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_heap_COMPONENT_NAME "heap") +set(__component____idf_heap_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/heap") +set(__component____idf_heap_COMPONENT_ALIAS "idf::heap") +set(__component____idf_heap___PREFIX "idf") +set(__component____idf_heap_KCONFIG "/home/abobkov/esp/esp-idf/components/heap/Kconfig") +set(__component____idf_heap_KCONFIG_PROJBUILD "") +set(__component____idf_heap_SDKCONFIG_RENAME "") +set(__component____idf_http_parser_COMPONENT_LIB "__idf_http_parser") +set(__component____idf_http_parser___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_http_parser_COMPONENT_NAME "http_parser") +set(__component____idf_http_parser_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/http_parser") +set(__component____idf_http_parser_COMPONENT_ALIAS "idf::http_parser") +set(__component____idf_http_parser___PREFIX "idf") +set(__component____idf_http_parser_KCONFIG "") +set(__component____idf_http_parser_KCONFIG_PROJBUILD "") +set(__component____idf_http_parser_SDKCONFIG_RENAME "") +set(__component____idf_idf_test_COMPONENT_LIB "__idf_idf_test") +set(__component____idf_idf_test___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_idf_test_COMPONENT_NAME "idf_test") +set(__component____idf_idf_test_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/idf_test") +set(__component____idf_idf_test_COMPONENT_ALIAS "idf::idf_test") +set(__component____idf_idf_test___PREFIX "idf") +set(__component____idf_idf_test_KCONFIG "") +set(__component____idf_idf_test_KCONFIG_PROJBUILD "") +set(__component____idf_idf_test_SDKCONFIG_RENAME "") +set(__component____idf_ieee802154_COMPONENT_LIB "__idf_ieee802154") +set(__component____idf_ieee802154___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_ieee802154_COMPONENT_NAME "ieee802154") +set(__component____idf_ieee802154_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/ieee802154") +set(__component____idf_ieee802154_COMPONENT_ALIAS "idf::ieee802154") +set(__component____idf_ieee802154___PREFIX "idf") +set(__component____idf_ieee802154_KCONFIG "/home/abobkov/esp/esp-idf/components/ieee802154/Kconfig") +set(__component____idf_ieee802154_KCONFIG_PROJBUILD "") +set(__component____idf_ieee802154_SDKCONFIG_RENAME "") +set(__component____idf_json_COMPONENT_LIB "__idf_json") +set(__component____idf_json___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_json_COMPONENT_NAME "json") +set(__component____idf_json_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/json") +set(__component____idf_json_COMPONENT_ALIAS "idf::json") +set(__component____idf_json___PREFIX "idf") +set(__component____idf_json_KCONFIG "") +set(__component____idf_json_KCONFIG_PROJBUILD "") +set(__component____idf_json_SDKCONFIG_RENAME "") +set(__component____idf_linux_COMPONENT_LIB "__idf_linux") +set(__component____idf_linux___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_linux_COMPONENT_NAME "linux") +set(__component____idf_linux_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/linux") +set(__component____idf_linux_COMPONENT_ALIAS "idf::linux") +set(__component____idf_linux___PREFIX "idf") +set(__component____idf_linux_KCONFIG "") +set(__component____idf_linux_KCONFIG_PROJBUILD "") +set(__component____idf_linux_SDKCONFIG_RENAME "") +set(__component____idf_log_COMPONENT_LIB "__idf_log") +set(__component____idf_log___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_log_COMPONENT_NAME "log") +set(__component____idf_log_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/log") +set(__component____idf_log_COMPONENT_ALIAS "idf::log") +set(__component____idf_log___PREFIX "idf") +set(__component____idf_log_KCONFIG "/home/abobkov/esp/esp-idf/components/log/Kconfig") +set(__component____idf_log_KCONFIG_PROJBUILD "") +set(__component____idf_log_SDKCONFIG_RENAME "") +set(__component____idf_lwip_COMPONENT_LIB "__idf_lwip") +set(__component____idf_lwip___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_lwip_COMPONENT_NAME "lwip") +set(__component____idf_lwip_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/lwip") +set(__component____idf_lwip_COMPONENT_ALIAS "idf::lwip") +set(__component____idf_lwip___PREFIX "idf") +set(__component____idf_lwip_KCONFIG "/home/abobkov/esp/esp-idf/components/lwip/Kconfig") +set(__component____idf_lwip_KCONFIG_PROJBUILD "") +set(__component____idf_lwip_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/lwip/sdkconfig.rename") +set(__component____idf_mbedtls_COMPONENT_LIB "__idf_mbedtls") +set(__component____idf_mbedtls___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_mbedtls_COMPONENT_NAME "mbedtls") +set(__component____idf_mbedtls_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/mbedtls") +set(__component____idf_mbedtls_COMPONENT_ALIAS "idf::mbedtls") +set(__component____idf_mbedtls___PREFIX "idf") +set(__component____idf_mbedtls_KCONFIG "/home/abobkov/esp/esp-idf/components/mbedtls/Kconfig") +set(__component____idf_mbedtls_KCONFIG_PROJBUILD "") +set(__component____idf_mbedtls_SDKCONFIG_RENAME "") +set(__component____idf_mqtt_COMPONENT_LIB "__idf_mqtt") +set(__component____idf_mqtt___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_mqtt_COMPONENT_NAME "mqtt") +set(__component____idf_mqtt_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/mqtt") +set(__component____idf_mqtt_COMPONENT_ALIAS "idf::mqtt") +set(__component____idf_mqtt___PREFIX "idf") +set(__component____idf_mqtt_KCONFIG "") +set(__component____idf_mqtt_KCONFIG_PROJBUILD "") +set(__component____idf_mqtt_SDKCONFIG_RENAME "") +set(__component____idf_newlib_COMPONENT_LIB "__idf_newlib") +set(__component____idf_newlib___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_newlib_COMPONENT_NAME "newlib") +set(__component____idf_newlib_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/newlib") +set(__component____idf_newlib_COMPONENT_ALIAS "idf::newlib") +set(__component____idf_newlib___PREFIX "idf") +set(__component____idf_newlib_KCONFIG "/home/abobkov/esp/esp-idf/components/newlib/Kconfig") +set(__component____idf_newlib_KCONFIG_PROJBUILD "") +set(__component____idf_newlib_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/newlib/sdkconfig.rename.esp32c3") +set(__component____idf_nvs_flash_COMPONENT_LIB "__idf_nvs_flash") +set(__component____idf_nvs_flash___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_nvs_flash_COMPONENT_NAME "nvs_flash") +set(__component____idf_nvs_flash_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/nvs_flash") +set(__component____idf_nvs_flash_COMPONENT_ALIAS "idf::nvs_flash") +set(__component____idf_nvs_flash___PREFIX "idf") +set(__component____idf_nvs_flash_KCONFIG "/home/abobkov/esp/esp-idf/components/nvs_flash/Kconfig") +set(__component____idf_nvs_flash_KCONFIG_PROJBUILD "") +set(__component____idf_nvs_flash_SDKCONFIG_RENAME "") +set(__component____idf_nvs_sec_provider_COMPONENT_LIB "__idf_nvs_sec_provider") +set(__component____idf_nvs_sec_provider___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_nvs_sec_provider_COMPONENT_NAME "nvs_sec_provider") +set(__component____idf_nvs_sec_provider_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/nvs_sec_provider") +set(__component____idf_nvs_sec_provider_COMPONENT_ALIAS "idf::nvs_sec_provider") +set(__component____idf_nvs_sec_provider___PREFIX "idf") +set(__component____idf_nvs_sec_provider_KCONFIG "/home/abobkov/esp/esp-idf/components/nvs_sec_provider/Kconfig") +set(__component____idf_nvs_sec_provider_KCONFIG_PROJBUILD "") +set(__component____idf_nvs_sec_provider_SDKCONFIG_RENAME "") +set(__component____idf_openthread_COMPONENT_LIB "__idf_openthread") +set(__component____idf_openthread___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_openthread_COMPONENT_NAME "openthread") +set(__component____idf_openthread_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/openthread") +set(__component____idf_openthread_COMPONENT_ALIAS "idf::openthread") +set(__component____idf_openthread___PREFIX "idf") +set(__component____idf_openthread_KCONFIG "/home/abobkov/esp/esp-idf/components/openthread/Kconfig") +set(__component____idf_openthread_KCONFIG_PROJBUILD "") +set(__component____idf_openthread_SDKCONFIG_RENAME "") +set(__component____idf_partition_table_COMPONENT_LIB "__idf_partition_table") +set(__component____idf_partition_table___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_partition_table_COMPONENT_NAME "partition_table") +set(__component____idf_partition_table_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/partition_table") +set(__component____idf_partition_table_COMPONENT_ALIAS "idf::partition_table") +set(__component____idf_partition_table___PREFIX "idf") +set(__component____idf_partition_table_KCONFIG "") +set(__component____idf_partition_table_KCONFIG_PROJBUILD "/home/abobkov/esp/esp-idf/components/partition_table/Kconfig.projbuild") +set(__component____idf_partition_table_SDKCONFIG_RENAME "") +set(__component____idf_perfmon_COMPONENT_LIB "__idf_perfmon") +set(__component____idf_perfmon___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_perfmon_COMPONENT_NAME "perfmon") +set(__component____idf_perfmon_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/perfmon") +set(__component____idf_perfmon_COMPONENT_ALIAS "idf::perfmon") +set(__component____idf_perfmon___PREFIX "idf") +set(__component____idf_perfmon_KCONFIG "") +set(__component____idf_perfmon_KCONFIG_PROJBUILD "") +set(__component____idf_perfmon_SDKCONFIG_RENAME "") +set(__component____idf_protobuf-c_COMPONENT_LIB "__idf_protobuf-c") +set(__component____idf_protobuf-c___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_protobuf-c_COMPONENT_NAME "protobuf-c") +set(__component____idf_protobuf-c_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/protobuf-c") +set(__component____idf_protobuf-c_COMPONENT_ALIAS "idf::protobuf-c") +set(__component____idf_protobuf-c___PREFIX "idf") +set(__component____idf_protobuf-c_KCONFIG "") +set(__component____idf_protobuf-c_KCONFIG_PROJBUILD "") +set(__component____idf_protobuf-c_SDKCONFIG_RENAME "") +set(__component____idf_protocomm_COMPONENT_LIB "__idf_protocomm") +set(__component____idf_protocomm___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_protocomm_COMPONENT_NAME "protocomm") +set(__component____idf_protocomm_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/protocomm") +set(__component____idf_protocomm_COMPONENT_ALIAS "idf::protocomm") +set(__component____idf_protocomm___PREFIX "idf") +set(__component____idf_protocomm_KCONFIG "/home/abobkov/esp/esp-idf/components/protocomm/Kconfig") +set(__component____idf_protocomm_KCONFIG_PROJBUILD "") +set(__component____idf_protocomm_SDKCONFIG_RENAME "") +set(__component____idf_pthread_COMPONENT_LIB "__idf_pthread") +set(__component____idf_pthread___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_pthread_COMPONENT_NAME "pthread") +set(__component____idf_pthread_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/pthread") +set(__component____idf_pthread_COMPONENT_ALIAS "idf::pthread") +set(__component____idf_pthread___PREFIX "idf") +set(__component____idf_pthread_KCONFIG "/home/abobkov/esp/esp-idf/components/pthread/Kconfig") +set(__component____idf_pthread_KCONFIG_PROJBUILD "") +set(__component____idf_pthread_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/pthread/sdkconfig.rename") +set(__component____idf_riscv_COMPONENT_LIB "__idf_riscv") +set(__component____idf_riscv___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_riscv_COMPONENT_NAME "riscv") +set(__component____idf_riscv_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/riscv") +set(__component____idf_riscv_COMPONENT_ALIAS "idf::riscv") +set(__component____idf_riscv___PREFIX "idf") +set(__component____idf_riscv_KCONFIG "") +set(__component____idf_riscv_KCONFIG_PROJBUILD "") +set(__component____idf_riscv_SDKCONFIG_RENAME "") +set(__component____idf_sdmmc_COMPONENT_LIB "__idf_sdmmc") +set(__component____idf_sdmmc___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_sdmmc_COMPONENT_NAME "sdmmc") +set(__component____idf_sdmmc_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/sdmmc") +set(__component____idf_sdmmc_COMPONENT_ALIAS "idf::sdmmc") +set(__component____idf_sdmmc___PREFIX "idf") +set(__component____idf_sdmmc_KCONFIG "") +set(__component____idf_sdmmc_KCONFIG_PROJBUILD "") +set(__component____idf_sdmmc_SDKCONFIG_RENAME "") +set(__component____idf_soc_COMPONENT_LIB "__idf_soc") +set(__component____idf_soc___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_soc_COMPONENT_NAME "soc") +set(__component____idf_soc_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/soc") +set(__component____idf_soc_COMPONENT_ALIAS "idf::soc") +set(__component____idf_soc___PREFIX "idf") +set(__component____idf_soc_KCONFIG "/home/abobkov/esp/esp-idf/components/soc/Kconfig") +set(__component____idf_soc_KCONFIG_PROJBUILD "") +set(__component____idf_soc_SDKCONFIG_RENAME "") +set(__component____idf_spi_flash_COMPONENT_LIB "__idf_spi_flash") +set(__component____idf_spi_flash___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_spi_flash_COMPONENT_NAME "spi_flash") +set(__component____idf_spi_flash_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/spi_flash") +set(__component____idf_spi_flash_COMPONENT_ALIAS "idf::spi_flash") +set(__component____idf_spi_flash___PREFIX "idf") +set(__component____idf_spi_flash_KCONFIG "/home/abobkov/esp/esp-idf/components/spi_flash/Kconfig") +set(__component____idf_spi_flash_KCONFIG_PROJBUILD "") +set(__component____idf_spi_flash_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/spi_flash/sdkconfig.rename") +set(__component____idf_spiffs_COMPONENT_LIB "__idf_spiffs") +set(__component____idf_spiffs___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_spiffs_COMPONENT_NAME "spiffs") +set(__component____idf_spiffs_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/spiffs") +set(__component____idf_spiffs_COMPONENT_ALIAS "idf::spiffs") +set(__component____idf_spiffs___PREFIX "idf") +set(__component____idf_spiffs_KCONFIG "/home/abobkov/esp/esp-idf/components/spiffs/Kconfig") +set(__component____idf_spiffs_KCONFIG_PROJBUILD "") +set(__component____idf_spiffs_SDKCONFIG_RENAME "") +set(__component____idf_tcp_transport_COMPONENT_LIB "__idf_tcp_transport") +set(__component____idf_tcp_transport___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_tcp_transport_COMPONENT_NAME "tcp_transport") +set(__component____idf_tcp_transport_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/tcp_transport") +set(__component____idf_tcp_transport_COMPONENT_ALIAS "idf::tcp_transport") +set(__component____idf_tcp_transport___PREFIX "idf") +set(__component____idf_tcp_transport_KCONFIG "/home/abobkov/esp/esp-idf/components/tcp_transport/Kconfig") +set(__component____idf_tcp_transport_KCONFIG_PROJBUILD "") +set(__component____idf_tcp_transport_SDKCONFIG_RENAME "") +set(__component____idf_touch_element_COMPONENT_LIB "__idf_touch_element") +set(__component____idf_touch_element___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_touch_element_COMPONENT_NAME "touch_element") +set(__component____idf_touch_element_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/touch_element") +set(__component____idf_touch_element_COMPONENT_ALIAS "idf::touch_element") +set(__component____idf_touch_element___PREFIX "idf") +set(__component____idf_touch_element_KCONFIG "") +set(__component____idf_touch_element_KCONFIG_PROJBUILD "") +set(__component____idf_touch_element_SDKCONFIG_RENAME "") +set(__component____idf_ulp_COMPONENT_LIB "__idf_ulp") +set(__component____idf_ulp___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_ulp_COMPONENT_NAME "ulp") +set(__component____idf_ulp_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/ulp") +set(__component____idf_ulp_COMPONENT_ALIAS "idf::ulp") +set(__component____idf_ulp___PREFIX "idf") +set(__component____idf_ulp_KCONFIG "/home/abobkov/esp/esp-idf/components/ulp/Kconfig") +set(__component____idf_ulp_KCONFIG_PROJBUILD "") +set(__component____idf_ulp_SDKCONFIG_RENAME "") +set(__component____idf_unity_COMPONENT_LIB "__idf_unity") +set(__component____idf_unity___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_unity_COMPONENT_NAME "unity") +set(__component____idf_unity_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/unity") +set(__component____idf_unity_COMPONENT_ALIAS "idf::unity") +set(__component____idf_unity___PREFIX "idf") +set(__component____idf_unity_KCONFIG "/home/abobkov/esp/esp-idf/components/unity/Kconfig") +set(__component____idf_unity_KCONFIG_PROJBUILD "") +set(__component____idf_unity_SDKCONFIG_RENAME "") +set(__component____idf_usb_COMPONENT_LIB "__idf_usb") +set(__component____idf_usb___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_usb_COMPONENT_NAME "usb") +set(__component____idf_usb_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/usb") +set(__component____idf_usb_COMPONENT_ALIAS "idf::usb") +set(__component____idf_usb___PREFIX "idf") +set(__component____idf_usb_KCONFIG "/home/abobkov/esp/esp-idf/components/usb/Kconfig") +set(__component____idf_usb_KCONFIG_PROJBUILD "") +set(__component____idf_usb_SDKCONFIG_RENAME "") +set(__component____idf_vfs_COMPONENT_LIB "__idf_vfs") +set(__component____idf_vfs___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_vfs_COMPONENT_NAME "vfs") +set(__component____idf_vfs_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/vfs") +set(__component____idf_vfs_COMPONENT_ALIAS "idf::vfs") +set(__component____idf_vfs___PREFIX "idf") +set(__component____idf_vfs_KCONFIG "/home/abobkov/esp/esp-idf/components/vfs/Kconfig") +set(__component____idf_vfs_KCONFIG_PROJBUILD "") +set(__component____idf_vfs_SDKCONFIG_RENAME "/home/abobkov/esp/esp-idf/components/vfs/sdkconfig.rename") +set(__component____idf_wear_levelling_COMPONENT_LIB "__idf_wear_levelling") +set(__component____idf_wear_levelling___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_wear_levelling_COMPONENT_NAME "wear_levelling") +set(__component____idf_wear_levelling_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/wear_levelling") +set(__component____idf_wear_levelling_COMPONENT_ALIAS "idf::wear_levelling") +set(__component____idf_wear_levelling___PREFIX "idf") +set(__component____idf_wear_levelling_KCONFIG "/home/abobkov/esp/esp-idf/components/wear_levelling/Kconfig") +set(__component____idf_wear_levelling_KCONFIG_PROJBUILD "") +set(__component____idf_wear_levelling_SDKCONFIG_RENAME "") +set(__component____idf_wifi_provisioning_COMPONENT_LIB "__idf_wifi_provisioning") +set(__component____idf_wifi_provisioning___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_wifi_provisioning_COMPONENT_NAME "wifi_provisioning") +set(__component____idf_wifi_provisioning_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/wifi_provisioning") +set(__component____idf_wifi_provisioning_COMPONENT_ALIAS "idf::wifi_provisioning") +set(__component____idf_wifi_provisioning___PREFIX "idf") +set(__component____idf_wifi_provisioning_KCONFIG "/home/abobkov/esp/esp-idf/components/wifi_provisioning/Kconfig") +set(__component____idf_wifi_provisioning_KCONFIG_PROJBUILD "") +set(__component____idf_wifi_provisioning_SDKCONFIG_RENAME "") +set(__component____idf_wpa_supplicant_COMPONENT_LIB "__idf_wpa_supplicant") +set(__component____idf_wpa_supplicant___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_wpa_supplicant_COMPONENT_NAME "wpa_supplicant") +set(__component____idf_wpa_supplicant_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/wpa_supplicant") +set(__component____idf_wpa_supplicant_COMPONENT_ALIAS "idf::wpa_supplicant") +set(__component____idf_wpa_supplicant___PREFIX "idf") +set(__component____idf_wpa_supplicant_KCONFIG "") +set(__component____idf_wpa_supplicant_KCONFIG_PROJBUILD "") +set(__component____idf_wpa_supplicant_SDKCONFIG_RENAME "") +set(__component____idf_xtensa_COMPONENT_LIB "__idf_xtensa") +set(__component____idf_xtensa___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_xtensa_COMPONENT_NAME "xtensa") +set(__component____idf_xtensa_COMPONENT_DIR "/home/abobkov/esp/esp-idf/components/xtensa") +set(__component____idf_xtensa_COMPONENT_ALIAS "idf::xtensa") +set(__component____idf_xtensa___PREFIX "idf") +set(__component____idf_xtensa_KCONFIG "") +set(__component____idf_xtensa_KCONFIG_PROJBUILD "") +set(__component____idf_xtensa_SDKCONFIG_RENAME "") +set(__component____idf_main_COMPONENT_LIB "__idf_main") +set(__component____idf_main___COMPONENT_PROPERTIES "COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME") +set(__component____idf_main_COMPONENT_NAME "main") +set(__component____idf_main_COMPONENT_DIR "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/main") +set(__component____idf_main_COMPONENT_ALIAS "idf::main") +set(__component____idf_main___PREFIX "idf") +set(__component____idf_main_KCONFIG "") +set(__component____idf_main_KCONFIG_PROJBUILD "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/main/Kconfig.projbuild") +set(__component____idf_main_SDKCONFIG_RENAME "") \ No newline at end of file diff --git a/ESP-IDF_Robot_RC/build/component_requires.temp.cmake b/ESP-IDF_Robot_RC/build/component_requires.temp.cmake new file mode 100644 index 000000000..da17b881e --- /dev/null +++ b/ESP-IDF_Robot_RC/build/component_requires.temp.cmake @@ -0,0 +1,318 @@ + +__component_set_property(___idf_app_trace REQUIRES "esp_timer") +__component_set_property(___idf_app_trace PRIV_REQUIRES "soc;driver") +__component_set_property(___idf_app_trace __COMPONENT_REGISTERED 1) +__component_set_property(___idf_app_trace INCLUDE_DIRS "include") +__component_set_property(___idf_app_update REQUIRES "partition_table;bootloader_support;esp_app_format;esp_bootloader_format;esp_partition") +__component_set_property(___idf_app_update PRIV_REQUIRES "esptool_py;efuse;spi_flash") +__component_set_property(___idf_app_update __COMPONENT_REGISTERED 1) +__component_set_property(___idf_app_update INCLUDE_DIRS "include") +__component_set_property(___idf_bootloader REQUIRES "") +__component_set_property(___idf_bootloader PRIV_REQUIRES "partition_table;esptool_py") +__component_set_property(___idf_bootloader __COMPONENT_REGISTERED 1) +__component_set_property(___idf_bootloader INCLUDE_DIRS "") +__component_set_property(___idf_bootloader_support REQUIRES "soc") +__component_set_property(___idf_bootloader_support PRIV_REQUIRES "spi_flash;mbedtls;efuse;heap;esp_bootloader_format;esp_app_format") +__component_set_property(___idf_bootloader_support __COMPONENT_REGISTERED 1) +__component_set_property(___idf_bootloader_support INCLUDE_DIRS "include;bootloader_flash/include") +__component_set_property(___idf_bt REQUIRES "esp_timer;esp_wifi") +__component_set_property(___idf_bt PRIV_REQUIRES "nvs_flash;soc;esp_pm;esp_phy;esp_coex;mbedtls;driver;vfs") +__component_set_property(___idf_bt __COMPONENT_REGISTERED 1) +__component_set_property(___idf_bt INCLUDE_DIRS "") +__component_set_property(___idf_cmock REQUIRES "unity") +__component_set_property(___idf_cmock PRIV_REQUIRES "") +__component_set_property(___idf_cmock __COMPONENT_REGISTERED 1) +__component_set_property(___idf_cmock INCLUDE_DIRS "CMock/src") +__component_set_property(___idf_console REQUIRES "vfs") +__component_set_property(___idf_console PRIV_REQUIRES "driver") +__component_set_property(___idf_console __COMPONENT_REGISTERED 1) +__component_set_property(___idf_console INCLUDE_DIRS "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build") +__component_set_property(___idf_cxx REQUIRES "") +__component_set_property(___idf_cxx PRIV_REQUIRES "pthread") +__component_set_property(___idf_cxx __COMPONENT_REGISTERED 1) +__component_set_property(___idf_cxx INCLUDE_DIRS "") +__component_set_property(___idf_driver REQUIRES "esp_pm;esp_ringbuf;freertos;soc;hal;esp_hw_support") +__component_set_property(___idf_driver PRIV_REQUIRES "efuse;esp_timer;esp_mm") +__component_set_property(___idf_driver __COMPONENT_REGISTERED 1) +__component_set_property(___idf_driver INCLUDE_DIRS "include;deprecated;analog_comparator/include;dac/include;gpio/include;gptimer/include;i2c/include;i2s/include;ledc/include;mcpwm/include;parlio/include;pcnt/include;rmt/include;sdio_slave/include;sdmmc/include;sigma_delta/include;spi/include;temperature_sensor/include;touch_sensor/include;twai/include;uart/include;usb_serial_jtag/include") +__component_set_property(___idf_efuse REQUIRES "") +__component_set_property(___idf_efuse PRIV_REQUIRES "bootloader_support;soc;spi_flash") +__component_set_property(___idf_efuse __COMPONENT_REGISTERED 1) +__component_set_property(___idf_efuse INCLUDE_DIRS "include;esp32c3/include") +__component_set_property(___idf_esp-tls REQUIRES "mbedtls") +__component_set_property(___idf_esp-tls PRIV_REQUIRES "http_parser;esp_timer;lwip") +__component_set_property(___idf_esp-tls __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp-tls INCLUDE_DIRS "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot_RC/build;esp-tls-crypto") +__component_set_property(___idf_esp_adc REQUIRES "") +__component_set_property(___idf_esp_adc PRIV_REQUIRES "driver;efuse") +__component_set_property(___idf_esp_adc __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_adc INCLUDE_DIRS "include;interface;esp32c3/include;deprecated/include") +__component_set_property(___idf_esp_app_format REQUIRES "") +__component_set_property(___idf_esp_app_format PRIV_REQUIRES "") +__component_set_property(___idf_esp_app_format __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_app_format INCLUDE_DIRS "include") +__component_set_property(___idf_esp_bootloader_format REQUIRES "") +__component_set_property(___idf_esp_bootloader_format PRIV_REQUIRES "") +__component_set_property(___idf_esp_bootloader_format __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_bootloader_format INCLUDE_DIRS "include") +__component_set_property(___idf_esp_coex REQUIRES "") +__component_set_property(___idf_esp_coex PRIV_REQUIRES "esp_timer;driver;esp_event") +__component_set_property(___idf_esp_coex __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_coex INCLUDE_DIRS "include") +__component_set_property(___idf_esp_common REQUIRES "") +__component_set_property(___idf_esp_common PRIV_REQUIRES "") +__component_set_property(___idf_esp_common __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_common INCLUDE_DIRS "include") +__component_set_property(___idf_esp_eth REQUIRES "esp_event") +__component_set_property(___idf_esp_eth PRIV_REQUIRES "driver;log;esp_timer") +__component_set_property(___idf_esp_eth __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_eth INCLUDE_DIRS "") +__component_set_property(___idf_esp_event REQUIRES "log;esp_common;freertos") +__component_set_property(___idf_esp_event PRIV_REQUIRES "esp_timer") +__component_set_property(___idf_esp_event __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_event INCLUDE_DIRS "include") +__component_set_property(___idf_esp_gdbstub REQUIRES "freertos") +__component_set_property(___idf_esp_gdbstub PRIV_REQUIRES "soc;esp_rom;esp_system") +__component_set_property(___idf_esp_gdbstub __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_gdbstub INCLUDE_DIRS "include") +__component_set_property(___idf_esp_hid REQUIRES "esp_event;bt") +__component_set_property(___idf_esp_hid PRIV_REQUIRES "") +__component_set_property(___idf_esp_hid __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_hid INCLUDE_DIRS "include") +__component_set_property(___idf_esp_http_client REQUIRES "lwip;esp_event") +__component_set_property(___idf_esp_http_client PRIV_REQUIRES "tcp_transport;http_parser") +__component_set_property(___idf_esp_http_client __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_http_client INCLUDE_DIRS "include") +__component_set_property(___idf_esp_http_server REQUIRES "http_parser;esp_event") +__component_set_property(___idf_esp_http_server PRIV_REQUIRES "mbedtls;lwip;esp_timer") +__component_set_property(___idf_esp_http_server __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_http_server INCLUDE_DIRS "include") +__component_set_property(___idf_esp_https_ota REQUIRES "esp_http_client;bootloader_support;esp_app_format;esp_event") +__component_set_property(___idf_esp_https_ota PRIV_REQUIRES "log;app_update") +__component_set_property(___idf_esp_https_ota __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_https_ota INCLUDE_DIRS "include") +__component_set_property(___idf_esp_https_server REQUIRES "esp_http_server;esp-tls") +__component_set_property(___idf_esp_https_server PRIV_REQUIRES "lwip") +__component_set_property(___idf_esp_https_server __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_https_server INCLUDE_DIRS "") +__component_set_property(___idf_esp_hw_support REQUIRES "soc") +__component_set_property(___idf_esp_hw_support PRIV_REQUIRES "efuse;spi_flash;bootloader_support;driver;esp_timer;esp_mm") +__component_set_property(___idf_esp_hw_support __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_hw_support INCLUDE_DIRS "include;include/soc;include/soc/esp32c3") +__component_set_property(___idf_esp_lcd REQUIRES "driver") +__component_set_property(___idf_esp_lcd PRIV_REQUIRES "esp_mm;esp_psram") +__component_set_property(___idf_esp_lcd __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_lcd INCLUDE_DIRS "include;interface") +__component_set_property(___idf_esp_local_ctrl REQUIRES "protocomm;esp_https_server") +__component_set_property(___idf_esp_local_ctrl PRIV_REQUIRES "protobuf-c") +__component_set_property(___idf_esp_local_ctrl __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_local_ctrl INCLUDE_DIRS "include") +__component_set_property(___idf_esp_mm REQUIRES "") +__component_set_property(___idf_esp_mm PRIV_REQUIRES "heap;spi_flash") +__component_set_property(___idf_esp_mm __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_mm INCLUDE_DIRS "include") +__component_set_property(___idf_esp_netif REQUIRES "esp_event") +__component_set_property(___idf_esp_netif PRIV_REQUIRES "esp_netif_stack") +__component_set_property(___idf_esp_netif __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_netif INCLUDE_DIRS "include") +__component_set_property(___idf_esp_netif_stack REQUIRES "lwip") +__component_set_property(___idf_esp_netif_stack PRIV_REQUIRES "") +__component_set_property(___idf_esp_netif_stack __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_netif_stack INCLUDE_DIRS "") +__component_set_property(___idf_esp_partition REQUIRES "") +__component_set_property(___idf_esp_partition PRIV_REQUIRES "esp_system;bootloader_support;spi_flash;app_update;partition_table") +__component_set_property(___idf_esp_partition __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_partition INCLUDE_DIRS "include") +__component_set_property(___idf_esp_phy REQUIRES "") +__component_set_property(___idf_esp_phy PRIV_REQUIRES "nvs_flash;driver;efuse;esp_timer;esp_wifi") +__component_set_property(___idf_esp_phy __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_phy INCLUDE_DIRS "include;esp32c3/include") +__component_set_property(___idf_esp_pm REQUIRES "") +__component_set_property(___idf_esp_pm PRIV_REQUIRES "esp_system;driver;esp_timer") +__component_set_property(___idf_esp_pm __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_pm INCLUDE_DIRS "include") +__component_set_property(___idf_esp_psram REQUIRES "") +__component_set_property(___idf_esp_psram PRIV_REQUIRES "heap;spi_flash;esp_mm") +__component_set_property(___idf_esp_psram __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_psram INCLUDE_DIRS "include") +__component_set_property(___idf_esp_ringbuf REQUIRES "") +__component_set_property(___idf_esp_ringbuf PRIV_REQUIRES "") +__component_set_property(___idf_esp_ringbuf __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_ringbuf INCLUDE_DIRS "include") +__component_set_property(___idf_esp_rom REQUIRES "") +__component_set_property(___idf_esp_rom PRIV_REQUIRES "soc;hal") +__component_set_property(___idf_esp_rom __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_rom INCLUDE_DIRS "include;include/esp32c3;esp32c3") +__component_set_property(___idf_esp_system REQUIRES "") +__component_set_property(___idf_esp_system PRIV_REQUIRES "spi_flash;esp_timer;esp_mm;pthread;bootloader_support;efuse;driver;esp_partition") +__component_set_property(___idf_esp_system __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_system INCLUDE_DIRS "include") +__component_set_property(___idf_esp_timer REQUIRES "esp_common") +__component_set_property(___idf_esp_timer PRIV_REQUIRES "soc;driver") +__component_set_property(___idf_esp_timer __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_timer INCLUDE_DIRS "include") +__component_set_property(___idf_esp_wifi REQUIRES "esp_event;esp_phy;esp_netif") +__component_set_property(___idf_esp_wifi PRIV_REQUIRES "driver;esptool_py;esp_pm;esp_timer;nvs_flash;wpa_supplicant;hal;lwip;esp_coex") +__component_set_property(___idf_esp_wifi __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esp_wifi INCLUDE_DIRS "include;wifi_apps/include") +__component_set_property(___idf_espcoredump REQUIRES "") +__component_set_property(___idf_espcoredump PRIV_REQUIRES "esp_partition;spi_flash;bootloader_support;mbedtls;esp_rom;soc;esp_system;driver") +__component_set_property(___idf_espcoredump __COMPONENT_REGISTERED 1) +__component_set_property(___idf_espcoredump INCLUDE_DIRS "include") +__component_set_property(___idf_esptool_py REQUIRES "bootloader") +__component_set_property(___idf_esptool_py PRIV_REQUIRES "partition_table") +__component_set_property(___idf_esptool_py __COMPONENT_REGISTERED 1) +__component_set_property(___idf_esptool_py INCLUDE_DIRS "") +__component_set_property(___idf_fatfs REQUIRES "wear_levelling;sdmmc") +__component_set_property(___idf_fatfs PRIV_REQUIRES "vfs") +__component_set_property(___idf_fatfs __COMPONENT_REGISTERED 1) +__component_set_property(___idf_fatfs INCLUDE_DIRS "diskio;src;vfs") +__component_set_property(___idf_freertos REQUIRES "") +__component_set_property(___idf_freertos PRIV_REQUIRES "") +__component_set_property(___idf_freertos __COMPONENT_REGISTERED 1) +__component_set_property(___idf_freertos INCLUDE_DIRS "config/include;config/include/freertos;config//include;FreeRTOS-Kernel/include;FreeRTOS-Kernel/portable//include;FreeRTOS-Kernel/portable//include/freertos;esp_additions/include") +__component_set_property(___idf_hal REQUIRES "soc;esp_rom") +__component_set_property(___idf_hal PRIV_REQUIRES "") +__component_set_property(___idf_hal __COMPONENT_REGISTERED 1) +__component_set_property(___idf_hal INCLUDE_DIRS "platform_port/include;esp32c3/include;include") +__component_set_property(___idf_heap REQUIRES "") +__component_set_property(___idf_heap PRIV_REQUIRES "soc") +__component_set_property(___idf_heap __COMPONENT_REGISTERED 1) +__component_set_property(___idf_heap INCLUDE_DIRS "include") +__component_set_property(___idf_http_parser REQUIRES "") +__component_set_property(___idf_http_parser PRIV_REQUIRES "") +__component_set_property(___idf_http_parser __COMPONENT_REGISTERED 1) +__component_set_property(___idf_http_parser INCLUDE_DIRS ".") +__component_set_property(___idf_idf_test REQUIRES "") +__component_set_property(___idf_idf_test PRIV_REQUIRES "") +__component_set_property(___idf_idf_test __COMPONENT_REGISTERED 1) +__component_set_property(___idf_idf_test INCLUDE_DIRS "include;include/esp32c3") +__component_set_property(___idf_ieee802154 REQUIRES "") +__component_set_property(___idf_ieee802154 PRIV_REQUIRES "esp_phy;driver;esp_timer;esp_coex;soc;hal") +__component_set_property(___idf_ieee802154 __COMPONENT_REGISTERED 1) +__component_set_property(___idf_ieee802154 INCLUDE_DIRS "include") +__component_set_property(___idf_json REQUIRES "") +__component_set_property(___idf_json PRIV_REQUIRES "") +__component_set_property(___idf_json __COMPONENT_REGISTERED 1) +__component_set_property(___idf_json INCLUDE_DIRS "cJSON") +__component_set_property(___idf_linux REQUIRES "") +__component_set_property(___idf_linux PRIV_REQUIRES "") +__component_set_property(___idf_linux __COMPONENT_REGISTERED 0) +__component_set_property(___idf_linux INCLUDE_DIRS "cJSON") +__component_set_property(___idf_log REQUIRES "") +__component_set_property(___idf_log PRIV_REQUIRES "soc;hal;esp_hw_support") +__component_set_property(___idf_log __COMPONENT_REGISTERED 1) +__component_set_property(___idf_log INCLUDE_DIRS "include") +__component_set_property(___idf_lwip REQUIRES "") +__component_set_property(___idf_lwip PRIV_REQUIRES "vfs") +__component_set_property(___idf_lwip __COMPONENT_REGISTERED 1) +__component_set_property(___idf_lwip INCLUDE_DIRS "") +__component_set_property(___idf_mbedtls REQUIRES "") +__component_set_property(___idf_mbedtls PRIV_REQUIRES "soc;esp_hw_support;esp_pm") +__component_set_property(___idf_mbedtls __COMPONENT_REGISTERED 1) +__component_set_property(___idf_mbedtls INCLUDE_DIRS "port/include;mbedtls/include;mbedtls/library") +__component_set_property(___idf_mqtt REQUIRES "esp_event;tcp_transport") +__component_set_property(___idf_mqtt PRIV_REQUIRES "esp_timer;http_parser;esp_hw_support;heap") +__component_set_property(___idf_mqtt __COMPONENT_REGISTERED 1) +__component_set_property(___idf_mqtt INCLUDE_DIRS "/home/abobkov/esp/esp-idf/components/mqtt/esp-mqtt/include") +__component_set_property(___idf_mqtt KCONFIG "/home/abobkov/esp/esp-idf/components/mqtt/esp-mqtt/Kconfig") +__component_set_property(___idf_newlib REQUIRES "") +__component_set_property(___idf_newlib PRIV_REQUIRES "soc;spi_flash") +__component_set_property(___idf_newlib __COMPONENT_REGISTERED 1) +__component_set_property(___idf_newlib INCLUDE_DIRS "platform_include") +__component_set_property(___idf_nvs_flash REQUIRES "esp_partition") +__component_set_property(___idf_nvs_flash PRIV_REQUIRES "spi_flash;newlib") +__component_set_property(___idf_nvs_flash __COMPONENT_REGISTERED 1) +__component_set_property(___idf_nvs_flash INCLUDE_DIRS "include;../spi_flash/include") +__component_set_property(___idf_nvs_sec_provider REQUIRES "") +__component_set_property(___idf_nvs_sec_provider PRIV_REQUIRES "bootloader_support;efuse;esp_partition;nvs_flash") +__component_set_property(___idf_nvs_sec_provider __COMPONENT_REGISTERED 1) +__component_set_property(___idf_nvs_sec_provider INCLUDE_DIRS "include") +__component_set_property(___idf_openthread REQUIRES "esp_netif;lwip;driver") +__component_set_property(___idf_openthread PRIV_REQUIRES "console;esp_event;esp_partition;esp_timer;ieee802154;mbedtls;nvs_flash") +__component_set_property(___idf_openthread __COMPONENT_REGISTERED 1) +__component_set_property(___idf_openthread INCLUDE_DIRS "") +__component_set_property(___idf_partition_table REQUIRES "") +__component_set_property(___idf_partition_table PRIV_REQUIRES "esptool_py") +__component_set_property(___idf_partition_table __COMPONENT_REGISTERED 1) +__component_set_property(___idf_partition_table INCLUDE_DIRS "") +__component_set_property(___idf_perfmon REQUIRES "") +__component_set_property(___idf_perfmon PRIV_REQUIRES "") +__component_set_property(___idf_perfmon __COMPONENT_REGISTERED 0) +__component_set_property(___idf_perfmon INCLUDE_DIRS "") +__component_set_property(___idf_protobuf-c REQUIRES "") +__component_set_property(___idf_protobuf-c PRIV_REQUIRES "") +__component_set_property(___idf_protobuf-c __COMPONENT_REGISTERED 1) +__component_set_property(___idf_protobuf-c INCLUDE_DIRS "protobuf-c") +__component_set_property(___idf_protocomm REQUIRES "bt") +__component_set_property(___idf_protocomm PRIV_REQUIRES "protobuf-c;mbedtls;console;esp_http_server;driver") +__component_set_property(___idf_protocomm __COMPONENT_REGISTERED 1) +__component_set_property(___idf_protocomm INCLUDE_DIRS "include/common;include/security;include/transports;include/crypto/srp6a;proto-c") +__component_set_property(___idf_pthread REQUIRES "") +__component_set_property(___idf_pthread PRIV_REQUIRES "") +__component_set_property(___idf_pthread __COMPONENT_REGISTERED 1) +__component_set_property(___idf_pthread INCLUDE_DIRS "include") +__component_set_property(___idf_riscv REQUIRES "") +__component_set_property(___idf_riscv PRIV_REQUIRES "soc") +__component_set_property(___idf_riscv __COMPONENT_REGISTERED 1) +__component_set_property(___idf_riscv INCLUDE_DIRS "include") +__component_set_property(___idf_sdmmc REQUIRES "driver") +__component_set_property(___idf_sdmmc PRIV_REQUIRES "soc;esp_timer") +__component_set_property(___idf_sdmmc __COMPONENT_REGISTERED 1) +__component_set_property(___idf_sdmmc INCLUDE_DIRS "include") +__component_set_property(___idf_soc REQUIRES "") +__component_set_property(___idf_soc PRIV_REQUIRES "") +__component_set_property(___idf_soc __COMPONENT_REGISTERED 1) +__component_set_property(___idf_soc INCLUDE_DIRS "include;esp32c3") +__component_set_property(___idf_spi_flash REQUIRES "hal") +__component_set_property(___idf_spi_flash PRIV_REQUIRES "bootloader_support;app_update;soc;driver;esp_mm") +__component_set_property(___idf_spi_flash __COMPONENT_REGISTERED 1) +__component_set_property(___idf_spi_flash INCLUDE_DIRS "include") +__component_set_property(___idf_spiffs REQUIRES "esp_partition") +__component_set_property(___idf_spiffs PRIV_REQUIRES "bootloader_support;esptool_py;vfs;spi_flash") +__component_set_property(___idf_spiffs __COMPONENT_REGISTERED 1) +__component_set_property(___idf_spiffs INCLUDE_DIRS "include") +__component_set_property(___idf_tcp_transport REQUIRES "esp-tls;lwip;esp_timer") +__component_set_property(___idf_tcp_transport PRIV_REQUIRES "") +__component_set_property(___idf_tcp_transport __COMPONENT_REGISTERED 1) +__component_set_property(___idf_tcp_transport INCLUDE_DIRS "include") +__component_set_property(___idf_touch_element REQUIRES "") +__component_set_property(___idf_touch_element PRIV_REQUIRES "") +__component_set_property(___idf_touch_element __COMPONENT_REGISTERED 0) +__component_set_property(___idf_touch_element INCLUDE_DIRS "include") +__component_set_property(___idf_ulp REQUIRES "driver;esp_adc") +__component_set_property(___idf_ulp PRIV_REQUIRES "") +__component_set_property(___idf_ulp __COMPONENT_REGISTERED 1) +__component_set_property(___idf_ulp INCLUDE_DIRS "") +__component_set_property(___idf_unity REQUIRES "") +__component_set_property(___idf_unity PRIV_REQUIRES "") +__component_set_property(___idf_unity __COMPONENT_REGISTERED 1) +__component_set_property(___idf_unity INCLUDE_DIRS "include;unity/src") +__component_set_property(___idf_usb REQUIRES "") +__component_set_property(___idf_usb PRIV_REQUIRES "driver") +__component_set_property(___idf_usb __COMPONENT_REGISTERED 1) +__component_set_property(___idf_usb INCLUDE_DIRS "") +__component_set_property(___idf_vfs REQUIRES "") +__component_set_property(___idf_vfs PRIV_REQUIRES "driver;esp_timer") +__component_set_property(___idf_vfs __COMPONENT_REGISTERED 1) +__component_set_property(___idf_vfs INCLUDE_DIRS "include") +__component_set_property(___idf_wear_levelling REQUIRES "esp_partition") +__component_set_property(___idf_wear_levelling PRIV_REQUIRES "spi_flash") +__component_set_property(___idf_wear_levelling __COMPONENT_REGISTERED 1) +__component_set_property(___idf_wear_levelling INCLUDE_DIRS "include") +__component_set_property(___idf_wifi_provisioning REQUIRES "lwip;protocomm") +__component_set_property(___idf_wifi_provisioning PRIV_REQUIRES "protobuf-c;bt;json;esp_timer;esp_wifi") +__component_set_property(___idf_wifi_provisioning __COMPONENT_REGISTERED 1) +__component_set_property(___idf_wifi_provisioning INCLUDE_DIRS "include") +__component_set_property(___idf_wpa_supplicant REQUIRES "") +__component_set_property(___idf_wpa_supplicant PRIV_REQUIRES "mbedtls;esp_timer;esp_wifi") +__component_set_property(___idf_wpa_supplicant __COMPONENT_REGISTERED 1) +__component_set_property(___idf_wpa_supplicant INCLUDE_DIRS "include;port/include;esp_supplicant/include") +__component_set_property(___idf_xtensa REQUIRES "") +__component_set_property(___idf_xtensa PRIV_REQUIRES "") +__component_set_property(___idf_xtensa __COMPONENT_REGISTERED 0) +__component_set_property(___idf_xtensa INCLUDE_DIRS "include;port/include;esp_supplicant/include") +__component_set_property(___idf_main REQUIRES "") +__component_set_property(___idf_main PRIV_REQUIRES "") +__component_set_property(___idf_main __COMPONENT_REGISTERED 1) +__component_set_property(___idf_main INCLUDE_DIRS ".") \ No newline at end of file diff --git a/ESP-IDF_Robot_RC/build/components_with_manifests_list.temp b/ESP-IDF_Robot_RC/build/components_with_manifests_list.temp new file mode 100644 index 000000000..e69de29bb