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 e36f95c..978008d Binary files a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin and b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin differ 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 ec94666..ca41997 Binary files a/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin and b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeError.log b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..825c546 --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeError.log @@ -0,0 +1,24 @@ +Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. +Compiler: /usr/bin/arm-none-eabi-gcc +Build flags: +Id flags: + +The output was: +1 +/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +/tmp/building/package/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. +Compiler: /usr/bin/arm-none-eabi-g++ +Build flags: +Id flags: + +The output was: +1 +/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +/tmp/building/package/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log index 42caa37..511dadd 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log @@ -1,152 +1,86 @@ The system is: Linux - 5.8.0-0.bpo.2-amd64 - x86_64 +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +arm-none-eabi-gcc (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] +Copyright (C) 2017 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. + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/cc +Compiler: /usr/bin/arm-none-eabi-gcc Build flags: -Id flags: +Id flags: -c The output was: 0 -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" -The C compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/a.out" +The C compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.o" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/c++ +Compiler: /usr/bin/arm-none-eabi-g++ Build flags: -Id flags: +Id flags: -c The output was: 0 -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" -The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/a.out" +The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.o" Determining if the C 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_32ffe/fast" -/usr/bin/make -f CMakeFiles/cmTC_32ffe.dir/build.make CMakeFiles/cmTC_32ffe.dir/build +Run Build Command:"/usr/bin/make" "cmTC_b8d79/fast" +/usr/bin/make -f CMakeFiles/cmTC_b8d79.dir/build.make CMakeFiles/cmTC_b8d79.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o -/usr/bin/cc -o CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_32ffe -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32ffe.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o -o cmTC_32ffe +Building C object CMakeFiles/cmTC_b8d79.dir/testCCompiler.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_b8d79.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C static library libcmTC_b8d79.a +/usr/bin/cmake -P CMakeFiles/cmTC_b8d79.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b8d79.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_b8d79.a CMakeFiles/cmTC_b8d79.dir/testCCompiler.c.o +/usr/bin/arm-none-eabi-ranlib libcmTC_b8d79.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Detecting C 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_58136/fast" -/usr/bin/make -f CMakeFiles/cmTC_58136.dir/build.make CMakeFiles/cmTC_58136.dir/build +Run Build Command:"/usr/bin/make" "cmTC_6be81/fast" +/usr/bin/make -f CMakeFiles/cmTC_6be81.dir/build.make CMakeFiles/cmTC_6be81.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -o CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c -Linking C executable cmTC_58136 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58136.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -o cmTC_58136 -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -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_58136' '-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/ccvC1mPF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_58136 /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_58136.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /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_58136' '-mtune=generic' '-march=x86-64' +Building C object CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c +Linking C static library libcmTC_6be81.a +/usr/bin/cmake -P CMakeFiles/cmTC_6be81.dir/cmake_clean_target.cmake +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6be81.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-ar qc libcmTC_6be81.a CMakeFiles/cmTC_6be81.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-ranlib libcmTC_6be81.a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Parsed C 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_58136/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_58136.dir/build.make CMakeFiles/cmTC_58136.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_6be81/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_6be81.dir/build.make CMakeFiles/cmTC_6be81.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] - ignore line: [Linking C executable cmTC_58136] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58136.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -o cmTC_58136 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - 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_58136' '-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/ccvC1mPF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_58136 /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_58136.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /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/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 f00921a..f02def4 Binary files a/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin and b/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin differ 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