From 295964c9e82a411fb020d7b72fcba3fd89b026ed Mon Sep 17 00:00:00 2001 From: atomega Date: Tue, 5 Oct 2021 12:09:45 +0200 Subject: [PATCH] Configurint the Cmake from experiences gathered from Dividing and divideArm branches --- bsl/cmakeLowLayer/CMakeLists.txt | 17 +- bsl/cmakeLowLayer/build/CMakeCache.txt | 44 +- .../CMakeFiles/3.13.4/CMakeASMCompiler.cmake | 12 +- .../CMakeFiles/3.13.4/CMakeCCompiler.cmake | 26 +- .../CMakeFiles/3.13.4/CMakeCXXCompiler.cmake | 30 +- .../3.13.4/CMakeDetermineCompilerABI_C.bin | Bin 16544 -> 1426 bytes .../3.13.4/CMakeDetermineCompilerABI_CXX.bin | Bin 16560 -> 1630 bytes .../build/CMakeFiles/CMakeError.log | 24 + .../build/CMakeFiles/CMakeOutput.log | 483 +++++------------- .../build/CMakeFiles/Makefile.cmake | 2 +- bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 | 3 + .../build/CMakeFiles/feature_tests.bin | Bin 16504 -> 3476 bytes .../refOvenTest.out.dir/ASM.includecache | 2 + .../refOvenTest.out.dir/C.includecache | 48 ++ .../CMakeFiles/refOvenTest.out.dir/build.make | 3 + .../CMakeFiles/refOvenTest.out.dir/flags.make | 2 +- bsl/cmakeLowLayer/build/Makefile | 3 + bsl/cmakeLowLayer/run.sh | 2 + 18 files changed, 284 insertions(+), 417 deletions(-) mode change 100755 => 100644 bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin mode change 100755 => 100644 bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin create mode 100644 bsl/cmakeLowLayer/build/CMakeFiles/CMakeError.log mode change 100755 => 100644 bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin diff --git a/bsl/cmakeLowLayer/CMakeLists.txt b/bsl/cmakeLowLayer/CMakeLists.txt index 296dfbc..aebd885 100644 --- a/bsl/cmakeLowLayer/CMakeLists.txt +++ b/bsl/cmakeLowLayer/CMakeLists.txt @@ -1,11 +1,18 @@ cmake_minimum_required(VERSION 3.5) -project(refOvenTest) +set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # Why ? Because we are using our own Linker so this will prevent Cmake to veryfy cimpilation with his Linker option +set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") +set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_ASM_FLAGS "-x assembler-with-cpp")#The reason that we use arm-none-eabi-gcc is that we will invoke c before the assemly Thus the flags. +set(CMAKE_OBJCOPY "/usr/bin/arm-none-eabi-objcopy") + +project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors. -enable_language(C ASM) set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_PROCESSOR arm) set(CMAKE_CROSSCOMPILING TRUE) +set(CMAKE_VERBOSE_MAKEFILE on) #define th global variables for CMAKE to use for this project. set(LINKER startup/STM32F042K6Tx_FLASH.ld) @@ -13,12 +20,6 @@ set(STARTUP startup/startup_stm32f042x6.s) set(CPU_MCU "-mcpu=cortex-m0") -set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") -#The reason that we use arm-none-eabi-gcc is that we will invoke c before hte assemly. -#Check $<$:-x assembler-with-cpp ${ASM_FLAGS}> -set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") -set(CMAKE_OBJCOPY "usr/bin/arm-none-eabi-objcopy") - set(EXECUTABLE ${PROJECT_NAME}.out) set(C_SOURCES diff --git a/bsl/cmakeLowLayer/build/CMakeCache.txt b/bsl/cmakeLowLayer/build/CMakeCache.txt index ecd25d8..6d99b0e 100644 --- a/bsl/cmakeLowLayer/build/CMakeCache.txt +++ b/bsl/cmakeLowLayer/build/CMakeCache.txt @@ -15,18 +15,15 @@ ######################## //Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//ASM compiler -CMAKE_ASM_COMPILER:FILEPATH=/usr/bin/cc +CMAKE_AR:FILEPATH=/usr/bin/arm-none-eabi-ar //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_ASM_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar +CMAKE_ASM_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar //A wrapper around 'ranlib' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib //Flags used by the ASM compiler during all build types. CMAKE_ASM_FLAGS:STRING= @@ -50,16 +47,13 @@ CMAKE_BUILD_TYPE:STRING= //Enable/Disable color output during build. CMAKE_COLOR_MAKEFILE:BOOL=ON -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-8 +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar //A wrapper around 'ranlib' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-8 +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib //Flags used by the CXX compiler during all build types. CMAKE_CXX_FLAGS:STRING= @@ -76,16 +70,13 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the CXX compiler during RELWITHDEBINFO builds. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-8 +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar //A wrapper around 'ranlib' adding the appropriate '--plugin' option // for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-8 +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib //Flags used by the C compiler during all build types. CMAKE_C_FLAGS:STRING= @@ -124,7 +115,7 @@ CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF CMAKE_INSTALL_PREFIX:PATH=/usr/local //Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld +CMAKE_LINKER:FILEPATH=/usr/bin/arm-none-eabi-ld //Path to a program. CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make @@ -150,13 +141,10 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy +CMAKE_NM:FILEPATH=/usr/bin/arm-none-eabi-nm //Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump +CMAKE_OBJDUMP:FILEPATH=/usr/bin/arm-none-eabi-objdump //Value Computed by CMake CMAKE_PROJECT_DESCRIPTION:STATIC= @@ -168,7 +156,7 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC= CMAKE_PROJECT_NAME:STATIC=refOvenTest //Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib +CMAKE_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-ranlib //Flags used by the linker during the creation of shared libraries // during all build types. @@ -218,7 +206,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip +CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip //If this value is on, makefiles will be generated without the // .SILENT directive, and all commands will be echoed to the console @@ -239,8 +227,6 @@ refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer //ADVANCED property for variable: CMAKE_AR CMAKE_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_COMPILER -CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_ASM_COMPILER_AR CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB @@ -272,8 +258,6 @@ CMAKE_COMMAND:INTERNAL=/usr/bin/cmake CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack //Path to ctest program executable. CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB @@ -288,8 +272,6 @@ CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER_AR CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB @@ -351,8 +333,6 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 CMAKE_NM-ADVANCED:INTERNAL=1 //number of local generators CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJDUMP CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 //Platform information initialized diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake index 493a2b6..a43ef28 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake @@ -1,10 +1,10 @@ -set(CMAKE_ASM_COMPILER "/usr/bin/cc") +set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") set(CMAKE_ASM_COMPILER_ARG1 "") -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_ASM_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_ASM_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_ASM_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_ASM_COMPILER_LOADED 1) set(CMAKE_ASM_COMPILER_ID "GNU") set(CMAKE_ASM_COMPILER_VERSION "") diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake index 3f570ea..fd4599e 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake @@ -1,7 +1,7 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") set(CMAKE_C_COMPILER_ARG1 "") set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "8.3.0") +set(CMAKE_C_COMPILER_VERSION "7.3.1") set(CMAKE_C_COMPILER_VERSION_INTERNAL "") set(CMAKE_C_COMPILER_WRAPPER "") set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") @@ -10,17 +10,17 @@ set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_PLATFORM_ID "") set(CMAKE_C_SIMULATE_ID "") set(CMAKE_C_SIMULATE_VERSION "") -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-8") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-8") -set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_COMPILER_IS_GNUCC 1) set(CMAKE_C_COMPILER_LOADED 1) set(CMAKE_C_COMPILER_WORKS TRUE) @@ -43,9 +43,9 @@ set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) set(CMAKE_C_LINKER_PREFERENCE 10) # Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_SIZEOF_DATA_PTR "4") set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") if(CMAKE_C_SIZEOF_DATA_PTR) set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") @@ -56,7 +56,7 @@ if(CMAKE_C_COMPILER_ABI) endif() if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + set(CMAKE_LIBRARY_ARCHITECTURE "") endif() set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") @@ -68,6 +68,6 @@ endif() -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/8;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake index 5a956a9..20d2b57 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake @@ -1,28 +1,28 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") set(CMAKE_CXX_COMPILER_ARG1 "") set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "8.3.0") +set(CMAKE_CXX_COMPILER_VERSION "7.3.1") set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") set(CMAKE_CXX_COMPILER_WRAPPER "") set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX20_COMPILE_FEATURES "") -set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_PLATFORM_ID "") set(CMAKE_CXX_SIMULATE_ID "") set(CMAKE_CXX_SIMULATE_VERSION "") -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-8") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-8") -set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_COMPILER_IS_GNUCXX 1) set(CMAKE_CXX_COMPILER_LOADED 1) set(CMAKE_CXX_COMPILER_WORKS TRUE) @@ -46,9 +46,9 @@ set(CMAKE_CXX_LINKER_PREFERENCE 30) set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) # Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") if(CMAKE_CXX_SIZEOF_DATA_PTR) set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") @@ -59,7 +59,7 @@ if(CMAKE_CXX_COMPILER_ABI) endif() if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + set(CMAKE_LIBRARY_ARCHITECTURE "") endif() set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") @@ -71,6 +71,6 @@ endif() -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/8;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin old mode 100755 new mode 100644 index e36f95c415bc098a587b396cd4b38cf903fd2af4..978008dc1451e8c0644a18da1d4e380933eb1db7 GIT binary patch literal 1426 zcma)5?`ji45TDH@HBCg)(qgqxw@@W2x!b#>Neo4d(Mq9F6h8>Hw3p;c51U-QJEi(X z(2pYc0%9M)5B=;@6n%lV_8!0|s55ujcoC(}F*`dmzxlJXd$S9s+uppH(fBawhHmGfdr;@2|(kU;)QZ1*;tHP3!+IU8%8ZQq5iY4 z)o3`~ZF|dd>$jKGw(4k^j21OC$Pn*X7XrP5wOqn{x?b%^tY_ZbU0!62VZ#wI$ir_9 z;F!(>kSc{D4_U}Sa<34;-iM=!{pL{)vcW_y8-UpTkrvrtnSTy)VmeU7+XE2a1BLG% zrcqCbcL(Gbr}zo0!0sXJzduUueL9{w(GIEf6!Oyj#Rs+6L{~&>Kc|ZEvy6VGHz2CS9yG=xdbDLG#h2($q6>e&MQ;w0=vj& zMyRu4iqAC(KTqObWoYUE3Vv}?AQ@NDn}W$9ODdcZ&FLI6L;viMpN07Cfi2z*)f;YD zfip1I$5Nd!%s1cHcTkQ~zkhjY)#>MKyijwOcQI%fpQSO_vZ! zQ<0OPH&17kByV6E4Wr1n`i>p^M`-S8WQr#o?dg?}E^qP+?&Cy0qU*?nKMf}kLov}W z2|)R-AWM?{Rnb5=!V`T%eiH7Yg?z+yWUM)O64%fuV+ctYB9gKu=}*ycfRbi_R~Mc) e*VpA4P=y5ys?nxTGT#{Laok75J(M7n688(#qQrmz literal 16544 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 B2uuI~ diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin old mode 100755 new mode 100644 index ec94666585c50c6056732272ce59730f0cea1f4f..ca419973ef05dcebef1dc8beb51e7cb52eaf24c4 GIT binary patch literal 1630 zcma)5Ur!T35TEO{P+BFGKm;+kCTNPL*S+ItD={imK@zG7@qyS7xb}{4f%fY4H0X;7 zJ{muQk!RxrAHWYmlt&%_?FaA^=*(TWTuBJdWp@7kW_MWLY<msX08wq(9@1pH@9X1m96v?Kh(5yklh zal*>5dkp&@PojIDe~e! z*QBu?gmlsAv;m^<=WjSDcTFEa#xG1VW`s$G7>tA+XkTyJLntM*HIy{J{Pqa)A0f=P|>$39By`)tp^lcUD6eP2Pg< zq?wN!5d2SDxL+EXYLCPKytYIEcOtkb&9^nrsG#)RKyC;PFJ1AhZ4VUF@C;BY%_bcNB1qisC^~48 zkJ^Fn*bm)d5}EP|7e}V|N49t+-%t+|#fa`A6aFF`M-1iA_=sq~+rAboqP_x}Vcd@p zhE#Fxe4saW+VKOFRELO*{fg)d_j`Z^5RUq#7bf~$LY;D{PNGBPWnT*xiV>HQvDePC z*3l_)2uT3#O?0G?FQJ}7rgKSBZDMw)f`>`en;@~@6?BAghltx0Ad~|458GGJ A5&!@I literal 16560 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 ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccvC1mPF.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-o] ==> ignore - arg [cmTC_58136] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] - arg [CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8] ==> [/usr/lib/gcc/x86_64-linux-gnu/8] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/8;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + ignore line: [Building C object CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C static library libcmTC_6be81.a] + ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_6be81.dir/cmake_clean_target.cmake] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6be81.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_6be81.a CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_6be81.a] + ignore line: [make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] + ignore line: [] + implicit libs: [] + implicit dirs: [] implicit fwks: [] @@ -155,14 +89,16 @@ Parsed C implicit link information from above output: Detecting C [-std=c11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_13fb7/fast" -/usr/bin/make -f CMakeFiles/cmTC_13fb7.dir/build.make CMakeFiles/cmTC_13fb7.dir/build +Run Build Command:"/usr/bin/make" "cmTC_43f6b/fast" +/usr/bin/make -f CMakeFiles/cmTC_43f6b.dir/build.make CMakeFiles/cmTC_43f6b.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o -/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_13fb7 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_13fb7.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o -o cmTC_13fb7 +Building C object CMakeFiles/cmTC_43f6b.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_43f6b.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C static library libcmTC_43f6b.a +/usr/bin/cmake -P CMakeFiles/cmTC_43f6b.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43f6b.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_43f6b.a CMakeFiles/cmTC_43f6b.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-ranlib libcmTC_43f6b.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -175,14 +111,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting C [-std=c99] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_a0d31/fast" -/usr/bin/make -f CMakeFiles/cmTC_a0d31.dir/build.make CMakeFiles/cmTC_a0d31.dir/build +Run Build Command:"/usr/bin/make" "cmTC_abb77/fast" +/usr/bin/make -f CMakeFiles/cmTC_abb77.dir/build.make CMakeFiles/cmTC_abb77.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o -/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_a0d31 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0d31.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o -o cmTC_a0d31 +Building C object CMakeFiles/cmTC_abb77.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_abb77.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C static library libcmTC_abb77.a +/usr/bin/cmake -P CMakeFiles/cmTC_abb77.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_abb77.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_abb77.a CMakeFiles/cmTC_abb77.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-ranlib libcmTC_abb77.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -195,14 +133,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting C [-std=c90] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_2882a/fast" -/usr/bin/make -f CMakeFiles/cmTC_2882a.dir/build.make CMakeFiles/cmTC_2882a.dir/build +Run Build Command:"/usr/bin/make" "cmTC_ae393/fast" +/usr/bin/make -f CMakeFiles/cmTC_ae393.dir/build.make CMakeFiles/cmTC_ae393.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_2882a.dir/feature_tests.c.o -/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_2882a.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_2882a -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2882a.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_2882a.dir/feature_tests.c.o -o cmTC_2882a +Building C object CMakeFiles/cmTC_ae393.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_ae393.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C static library libcmTC_ae393.a +/usr/bin/cmake -P CMakeFiles/cmTC_ae393.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ae393.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_ae393.a CMakeFiles/cmTC_ae393.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-ranlib libcmTC_ae393.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -213,210 +153,71 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Determining if the CXX compiler works passed with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_fe116/fast" -/usr/bin/make -f CMakeFiles/cmTC_fe116.dir/build.make CMakeFiles/cmTC_fe116.dir/build +Run Build Command:"/usr/bin/make" "cmTC_14a03/fast" +/usr/bin/make -f CMakeFiles/cmTC_14a03.dir/build.make CMakeFiles/cmTC_14a03.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o -/usr/bin/c++ -o CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_fe116 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fe116.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o -o cmTC_fe116 +Building CXX object CMakeFiles/cmTC_14a03.dir/testCXXCompiler.cxx.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_14a03.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX static library libcmTC_14a03.a +/usr/bin/cmake -P CMakeFiles/cmTC_14a03.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14a03.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_14a03.a CMakeFiles/cmTC_14a03.dir/testCXXCompiler.cxx.o +/usr/bin/arm-none-eabi-ranlib libcmTC_14a03.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Detecting CXX compiler ABI info compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_a97e6/fast" -/usr/bin/make -f CMakeFiles/cmTC_a97e6.dir/build.make CMakeFiles/cmTC_a97e6.dir/build +Run Build Command:"/usr/bin/make" "cmTC_7208b/fast" +/usr/bin/make -f CMakeFiles/cmTC_7208b.dir/build.make CMakeFiles/cmTC_7208b.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -o CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp -Linking CXX executable cmTC_a97e6 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a97e6.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a97e6 -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Debian 8.3.0-6' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 8.3.0 (Debian 8.3.0-6) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHytmsg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_a97e6 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +Building CXX object CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp +Linking CXX static library libcmTC_7208b.a +/usr/bin/cmake -P CMakeFiles/cmTC_7208b.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7208b.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_7208b.a CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-ranlib libcmTC_7208b.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_a97e6/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_a97e6.dir/build.make CMakeFiles/cmTC_a97e6.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_7208b/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_7208b.dir/build.make CMakeFiles/cmTC_7208b.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Linking CXX executable cmTC_a97e6] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a97e6.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a97e6 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 8.3.0-6' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 8.3.0 (Debian 8.3.0-6) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHytmsg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_a97e6 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/8/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccHytmsg.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-o] ==> ignore - arg [cmTC_a97e6] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] - arg [CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8] ==> [/usr/lib/gcc/x86_64-linux-gnu/8] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/8;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + ignore line: [Building CXX object CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX static library libcmTC_7208b.a] + ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_7208b.dir/cmake_clean_target.cmake] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7208b.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_7208b.a CMakeFiles/cmTC_7208b.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_7208b.a] + ignore line: [make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] + ignore line: [] + implicit libs: [] + implicit dirs: [] implicit fwks: [] -Detecting CXX [-std=c++2a] compiler features compiled with the following output: +Detecting CXX [-std=c++1z] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_a38f4/fast" -/usr/bin/make -f CMakeFiles/cmTC_a38f4.dir/build.make CMakeFiles/cmTC_a38f4.dir/build +Run Build Command:"/usr/bin/make" "cmTC_3f242/fast" +/usr/bin/make -f CMakeFiles/cmTC_3f242.dir/build.make CMakeFiles/cmTC_3f242.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++2a -o CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_a38f4 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a38f4.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o -o cmTC_a38f4 -make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' - - - Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers - Feature record: CXX_FEATURE:1cxx_alias_templates - Feature record: CXX_FEATURE:1cxx_alignas - Feature record: CXX_FEATURE:1cxx_alignof - Feature record: CXX_FEATURE:1cxx_attributes - Feature record: CXX_FEATURE:1cxx_attribute_deprecated - Feature record: CXX_FEATURE:1cxx_auto_type - Feature record: CXX_FEATURE:1cxx_binary_literals - Feature record: CXX_FEATURE:1cxx_constexpr - Feature record: CXX_FEATURE:1cxx_contextual_conversions - Feature record: CXX_FEATURE:1cxx_decltype - Feature record: CXX_FEATURE:1cxx_decltype_auto - Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types - Feature record: CXX_FEATURE:1cxx_default_function_template_args - Feature record: CXX_FEATURE:1cxx_defaulted_functions - Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers - Feature record: CXX_FEATURE:1cxx_delegating_constructors - Feature record: CXX_FEATURE:1cxx_deleted_functions - Feature record: CXX_FEATURE:1cxx_digit_separators - Feature record: CXX_FEATURE:1cxx_enum_forward_declarations - Feature record: CXX_FEATURE:1cxx_explicit_conversions - Feature record: CXX_FEATURE:1cxx_extended_friend_declarations - Feature record: CXX_FEATURE:1cxx_extern_templates - Feature record: CXX_FEATURE:1cxx_final - Feature record: CXX_FEATURE:1cxx_func_identifier - Feature record: CXX_FEATURE:1cxx_generalized_initializers - Feature record: CXX_FEATURE:1cxx_generic_lambdas - Feature record: CXX_FEATURE:1cxx_inheriting_constructors - Feature record: CXX_FEATURE:1cxx_inline_namespaces - Feature record: CXX_FEATURE:1cxx_lambdas - Feature record: CXX_FEATURE:1cxx_lambda_init_captures - Feature record: CXX_FEATURE:1cxx_local_type_template_args - Feature record: CXX_FEATURE:1cxx_long_long_type - Feature record: CXX_FEATURE:1cxx_noexcept - Feature record: CXX_FEATURE:1cxx_nonstatic_member_init - Feature record: CXX_FEATURE:1cxx_nullptr - Feature record: CXX_FEATURE:1cxx_override - Feature record: CXX_FEATURE:1cxx_range_for - Feature record: CXX_FEATURE:1cxx_raw_string_literals - Feature record: CXX_FEATURE:1cxx_reference_qualified_functions - Feature record: CXX_FEATURE:1cxx_relaxed_constexpr - Feature record: CXX_FEATURE:1cxx_return_type_deduction - Feature record: CXX_FEATURE:1cxx_right_angle_brackets - Feature record: CXX_FEATURE:1cxx_rvalue_references - Feature record: CXX_FEATURE:1cxx_sizeof_member - Feature record: CXX_FEATURE:1cxx_static_assert - Feature record: CXX_FEATURE:1cxx_strong_enums - Feature record: CXX_FEATURE:1cxx_template_template_parameters - Feature record: CXX_FEATURE:1cxx_thread_local - Feature record: CXX_FEATURE:1cxx_trailing_return_types - Feature record: CXX_FEATURE:1cxx_unicode_literals - Feature record: CXX_FEATURE:1cxx_uniform_initialization - Feature record: CXX_FEATURE:1cxx_unrestricted_unions - Feature record: CXX_FEATURE:1cxx_user_literals - Feature record: CXX_FEATURE:1cxx_variable_templates - Feature record: CXX_FEATURE:1cxx_variadic_macros - Feature record: CXX_FEATURE:1cxx_variadic_templates - - -Detecting CXX [-std=c++17] compiler features compiled with the following output: -Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp - -Run Build Command:"/usr/bin/make" "cmTC_8de3b/fast" -/usr/bin/make -f CMakeFiles/cmTC_8de3b.dir/build.make CMakeFiles/cmTC_8de3b.dir/build -make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++17 -o CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_8de3b -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8de3b.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o -o cmTC_8de3b +Building CXX object CMakeFiles/cmTC_3f242.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_3f242.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX static library libcmTC_3f242.a +/usr/bin/cmake -P CMakeFiles/cmTC_3f242.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3f242.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_3f242.a CMakeFiles/cmTC_3f242.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-ranlib libcmTC_3f242.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -482,14 +283,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++14] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_a8c60/fast" -/usr/bin/make -f CMakeFiles/cmTC_a8c60.dir/build.make CMakeFiles/cmTC_a8c60.dir/build +Run Build Command:"/usr/bin/make" "cmTC_e166c/fast" +/usr/bin/make -f CMakeFiles/cmTC_e166c.dir/build.make CMakeFiles/cmTC_e166c.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_a8c60 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8c60.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o -o cmTC_a8c60 +Building CXX object CMakeFiles/cmTC_e166c.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_e166c.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX static library libcmTC_e166c.a +/usr/bin/cmake -P CMakeFiles/cmTC_e166c.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e166c.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_e166c.a CMakeFiles/cmTC_e166c.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-ranlib libcmTC_e166c.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -555,14 +358,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_58b53/fast" -/usr/bin/make -f CMakeFiles/cmTC_58b53.dir/build.make CMakeFiles/cmTC_58b53.dir/build +Run Build Command:"/usr/bin/make" "cmTC_042e6/fast" +/usr/bin/make -f CMakeFiles/cmTC_042e6.dir/build.make CMakeFiles/cmTC_042e6.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_58b53 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58b53.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o -o cmTC_58b53 +Building CXX object CMakeFiles/cmTC_042e6.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_042e6.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX static library libcmTC_042e6.a +/usr/bin/cmake -P CMakeFiles/cmTC_042e6.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_042e6.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_042e6.a CMakeFiles/cmTC_042e6.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-ranlib libcmTC_042e6.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -628,14 +433,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++98] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_b631e/fast" -/usr/bin/make -f CMakeFiles/cmTC_b631e.dir/build.make CMakeFiles/cmTC_b631e.dir/build +Run Build Command:"/usr/bin/make" "cmTC_af77a/fast" +/usr/bin/make -f CMakeFiles/cmTC_af77a.dir/build.make CMakeFiles/cmTC_af77a.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_b631e -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b631e.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o -o cmTC_b631e +Building CXX object CMakeFiles/cmTC_af77a.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_af77a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX static library libcmTC_af77a.a +/usr/bin/cmake -P CMakeFiles/cmTC_af77a.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af77a.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_af77a.a CMakeFiles/cmTC_af77a.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-ranlib libcmTC_af77a.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -696,9 +503,3 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Feature record: CXX_FEATURE:0cxx_variable_templates Feature record: CXX_FEATURE:0cxx_variadic_macros Feature record: CXX_FEATURE:0cxx_variadic_templates -Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": -cc (Debian 8.3.0-6) 8.3.0 -Copyright (C) 2018 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake index 0b8551d..d4c7b5d 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake @@ -112,11 +112,11 @@ set(CMAKE_MAKEFILE_OUTPUTS # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS "CMakeFiles/3.13.4/CMakeSystem.cmake" + "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" - "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 index 87059e6..cd2768e 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 @@ -34,6 +34,9 @@ SUFFIXES = .SUFFIXES: .hpux_make_needs_suffix_list +# Produce verbose output by default. +VERBOSE = 1 + # Suppress display of executed commands. $(VERBOSE).SILENT: diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin b/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin old mode 100755 new mode 100644 index f00921ac8b7a09913ad81844db2475ec21bac465..f02def44c3c22e75f08a4095bd5390f455d437a7 GIT binary patch literal 3476 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 PzQ5n+c#9b&Y?S{G*c|4* diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache index 8e54ca9..f72cac4 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache @@ -6,3 +6,5 @@ #IncludeRegexTransform: +/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s + diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache index 93bcccd..e81bf2c 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache @@ -158,7 +158,55 @@ stm32_assert.h ../Inc/stm32_assert.h +../Inc/stm32f0xx_it.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c +stm32f0xx_ll_exti.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c +stm32f0xx_ll_gpio.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h +stm32f0xx_ll_bus.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c +stm32f0xx_ll_pwr.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h +stm32f0xx_ll_bus.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c +stm32f0xx_ll_rcc.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c +stm32f0xx_ll_rcc.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32f0xx_ll_utils.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h +stm32f0xx_ll_system.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c main.h /home/key/github/KED/bsl/cmakeLowLayer/Src/main.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c +main.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h +stm32f0xx_it.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.h + +/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c +stm32f0xx.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx.h + diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make index 8395703..47ed992 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -18,6 +18,9 @@ SUFFIXES = .SUFFIXES: .hpux_make_needs_suffix_list +# Produce verbose output by default. +VERBOSE = 1 + # Suppress display of executed commands. $(VERBOSE).SILENT: diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make index 9ed0601..fbfb996 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -3,7 +3,7 @@ # compile ASM with /usr/bin/arm-none-eabi-gcc # compile C with /usr/bin/arm-none-eabi-gcc -ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -ffunction-sections +ASM_FLAGS = -x assembler-with-cpp -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -ffunction-sections ASM_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 diff --git a/bsl/cmakeLowLayer/build/Makefile b/bsl/cmakeLowLayer/build/Makefile index 2455ae2..e5281ae 100644 --- a/bsl/cmakeLowLayer/build/Makefile +++ b/bsl/cmakeLowLayer/build/Makefile @@ -23,6 +23,9 @@ SUFFIXES = .SUFFIXES: .hpux_make_needs_suffix_list +# Produce verbose output by default. +VERBOSE = 1 + # Suppress display of executed commands. $(VERBOSE).SILENT: diff --git a/bsl/cmakeLowLayer/run.sh b/bsl/cmakeLowLayer/run.sh index 5455244..57eb9da 100755 --- a/bsl/cmakeLowLayer/run.sh +++ b/bsl/cmakeLowLayer/run.sh @@ -2,7 +2,9 @@ FILE=build/ if [ -d "$FILE" ];then + rm -r build echo Cmake build dorectory exists + cmake -S . -B build/ else cmake -S . -B build/ fi