opimized cmake still with porject names defined but i can take the CMakeLists.txt one ste higher

interrupts
key 4 years ago
parent f6900baaf1
commit da7ff46daf

@ -31,55 +31,27 @@ set(C_FUNC c_functions)
set(CPP_FUNC cpp_functions) set(CPP_FUNC cpp_functions)
set(AS_FUNC assembly_functions) set(AS_FUNC assembly_functions)
set(EXECUTABLE ${PROJECT_NAME}.out) set(EXECUTABLE ${PROJECT_NAME}.out)
#################################################################################################### ####################################################################################################
#SOURCES #CONFIG FILE
#################################################################################################### ####################################################################################################
# For flags please check https://manned.org/arm-none-eabi-gcc/34fd6095 include(nucleo_f042k6/bsl_nucleo_f042k6.cmake)
set(C_FLAGS
${CPU_MCU}
-mthumb #Instruction set : https://stackoverflow.com/questions/10638130/what-is-the-arm-thumb-instruction-set
-Wall #Error : If you don't know this one please chek basical compiling
-fdata-sections #Optimization : Linker can perform optimizations to improve locality of reference in the instruction space.
-fdiagnostics-color=always
-ffunction-sections #Optimization : used with -fdata-sections
$<$<CONFIG:Debug>:-O -g -gdwarf-2>)
set(C_DEFS
-DUSE_FULL_LL_DRIVER
-DSTM32F042x6
-DHSE_VALUE=8000000
-DHSE_STARTUP_TIMEOUT=100
-DLSE_STARTUP_TIMEOUT=5000
-DLSE_VALUE=32768
-DHSI_VALUE=8000000
-DLSI_VALUE=40000
-DVDD_VALUE=3300
-DPREFETCH_ENABLE=1
-DINSTRUCTION_CACHE_ENABLE=0
-DDATA_CACHE_ENABLE=0)
set (CPP_SOURCES cppSrc/transfer.cpp)
set (CPP_INCLUDES nucleo_f042k6)#${C_INCLUDES} )
set (CPP_FLAGS ${C_FLAGS})
set (CPP_DEFS ${C_DEFS})
set(LINKER_FLAGS
-mthumb
-specs=nano.specs
-lc
-lm
-lnosys
-Wl,--gc-sections)
#################################################################################################### ####################################################################################################
#SUBDIRECTORIES #SUBDIRECTORIES
#################################################################################################### ####################################################################################################
add_subdirectory(csl) add_subdirectory(csl)
add_subdirectory(nucleo_f042k6)
#The order is important
list(APPEND EXTRA_LIBS sub::startup)
list(APPEND EXTRA_LIBS sub::translator)
list(APPEND EXTRA_LIBS sub::cSources)
#################################################################################################### ####################################################################################################
#EXECUTABLE #EXECUTABLE
#################################################################################################### ####################################################################################################
add_executable(${EXECUTABLE} nucleo_f042k6/bls_nucleo_f042k6.cpp) add_executable(${EXECUTABLE} main.cpp)
target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS}) target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS}) target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS})
target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES}) target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES})
@ -87,17 +59,9 @@ target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES})
#################################################################################################### ####################################################################################################
#LINKING EXECUTEABLE #LINKING EXECUTEABLE
#################################################################################################### ####################################################################################################
target_link_libraries(${EXECUTABLE} sub::startup sub::cSources)#${C_FUNC} ${CPP_FUNC}) target_link_libraries(${EXECUTABLE} ${EXTRA_LIBS})
target_link_options(${EXECUTABLE} PRIVATE target_link_options(${EXECUTABLE} PRIVATE ${LINKER_FLAGS})
${CPU_MCU}
-mthumb
-specs=nano.specs
-T${CMAKE_SOURCE_DIR}/${LINKER}
-lc
-lm
-lnosys
-Wl,-Map=${PROJECT_NAME}.map,--cref
-Wl,--gc-sections)
#################################################################################################### ####################################################################################################
#CUSTOM COMMANDS #CUSTOM COMMANDS
#################################################################################################### ####################################################################################################
@ -109,6 +73,7 @@ add_custom_command(TARGET ${EXECUTABLE}
POST_BUILD POST_BUILD
COMMAND arm-none-eabi-objcopy -O ihex ${EXECUTABLE} ${PROJECT_NAME}.hex COMMAND arm-none-eabi-objcopy -O ihex ${EXECUTABLE} ${PROJECT_NAME}.hex
COMMAND arm-none-eabi-objcopy -O binary ${EXECUTABLE} ${PROJECT_NAME}.bin) COMMAND arm-none-eabi-objcopy -O binary ${EXECUTABLE} ${PROJECT_NAME}.bin)
#################################################################################################### ####################################################################################################
#CUSTOM Comments from dev. #CUSTOM Comments from dev.
#################################################################################################### ####################################################################################################

@ -1,5 +1,5 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /home/key/github/KED/bsl/build # For build in directory: /home/key/Git/ked/bsl/build
# It was generated by CMake: /usr/bin/cmake # It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake. # You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor. # If you do not want to change any of the values, simply exit the editor.
@ -14,6 +14,9 @@
# EXTERNAL cache entries # EXTERNAL cache entries
######################## ########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/arm-none-eabi-addr2line
//Path to a program. //Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/arm-none-eabi-ar CMAKE_AR:FILEPATH=/usr/bin/arm-none-eabi-ar
@ -93,6 +96,9 @@ CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds. //Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types. //Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING= CMAKE_EXE_LINKER_FLAGS:STRING=
@ -109,7 +115,7 @@ CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation. //Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Install path prefix, prepended onto install directories. //Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local CMAKE_INSTALL_PREFIX:PATH=/usr/local
@ -118,7 +124,7 @@ CMAKE_INSTALL_PREFIX:PATH=/usr/local
CMAKE_LINKER:FILEPATH=/usr/bin/arm-none-eabi-ld CMAKE_LINKER:FILEPATH=/usr/bin/arm-none-eabi-ld
//Path to a program. //Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
//Flags used by the linker during the creation of modules during //Flags used by the linker during the creation of modules during
// all build types. // all build types.
@ -158,6 +164,9 @@ CMAKE_PROJECT_NAME:STATIC=refOvenTest
//Path to a program. //Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-ranlib CMAKE_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/arm-none-eabi-readelf
//Flags used by the linker during the creation of shared libraries //Flags used by the linker during the creation of shared libraries
// during all build types. // during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING= CMAKE_SHARED_LINKER_FLAGS:STRING=
@ -215,49 +224,45 @@ CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake //Value Computed by CMake
CSources_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042/Src Csl_Stm32f0xx_BINARY_DIR:STATIC=/home/key/Git/ked/bsl/build/csl/stm32f042
//Dependencies for the target //Dependencies for the target
CSources_LIB_DEPENDS:STATIC=general;sub::drivers; Csl_Stm32f0xx_LIB_DEPENDS:STATIC=general;sub::drivers;
//Value Computed by CMake
CSources_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/Src
//Value Computed by CMake
Csl_Stm32f0xx_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042
//Value Computed by CMake //Value Computed by CMake
Csl_Stm32f0xx_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042 Csl_Stm32f0xx_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042
//Value Computed by CMake //Value Computed by CMake
Csl_Stm_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl Csl_Stm_BINARY_DIR:STATIC=/home/key/Git/ked/bsl/build/csl
//Value Computed by CMake //Value Computed by CMake
Csl_Stm_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl Csl_Stm_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl
//Value Computed by CMake //Value Computed by CMake
Drivers_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042/Drivers Drivers_BINARY_DIR:STATIC=/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers
//Value Computed by CMake //Value Computed by CMake
Drivers_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/Drivers Drivers_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042/Drivers
//Value Computed by CMake //Value Computed by CMake
Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042/startup Startup_BINARY_DIR:STATIC=/home/key/Git/ked/bsl/build/csl/stm32f042/startup
//Value Computed by CMake //Value Computed by CMake
Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/startup Startup_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042/startup
//Value Computed by CMake //Value Computed by CMake
refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build refOvenTest_BINARY_DIR:STATIC=/home/key/Git/ked/bsl/build
//Value Computed by CMake //Value Computed by CMake
refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl refOvenTest_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl
######################## ########################
# INTERNAL cache entries # INTERNAL cache entries
######################## ########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR //ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1 CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR //ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
@ -276,11 +281,11 @@ CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO //ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created //This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/github/KED/bsl/build CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/Git/ked/bsl/build
//Major version of cmake used to create the current loaded cache //Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache //Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=13 CMAKE_CACHE_MINOR_VERSION:INTERNAL=18
//Patch version of cmake used to create the current loaded cache //Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 CMAKE_CACHE_PATCH_VERSION:INTERNAL=4
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
@ -319,6 +324,8 @@ CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Executable file format //Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
@ -345,7 +352,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this //Source directory with the top level CMakeLists.txt file for this
// project // project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/github/KED/bsl CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/Git/ked/bsl
//Install .so files without execute permission. //Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER //ADVANCED property for variable: CMAKE_LINKER
@ -365,15 +372,17 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM //ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1 CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators //number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=6 CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=7
//ADVANCED property for variable: CMAKE_OBJDUMP //ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized //Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB //ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1 CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation. //Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.13 CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.18
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@ -401,7 +410,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP //ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command //uname command
CMAKE_UNAME:INTERNAL=/bin/uname CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1

@ -5,12 +5,15 @@ set(CMAKE_ASM_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar")
set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") set(CMAKE_ASM_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib")
set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld")
set(CMAKE_MT "")
set(CMAKE_ASM_COMPILER_LOADED 1) set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "GNU") set(CMAKE_ASM_COMPILER_ID "GNU")
set(CMAKE_ASM_COMPILER_VERSION "") set(CMAKE_ASM_COMPILER_VERSION "")
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0) set(CMAKE_ASM_LINKER_PREFERENCE 0)

@ -1,7 +1,7 @@
set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc")
set(CMAKE_C_COMPILER_ARG1 "") set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "7.3.1") set(CMAKE_C_COMPILER_VERSION "8.3.1")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "") set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "") set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
@ -12,15 +12,18 @@ set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C_PLATFORM_ID "") set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "") set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "") set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") set(CMAKE_AR "/usr/bin/arm-none-eabi-ar")
set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar")
set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib")
set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCC 1) set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1) set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE) set(CMAKE_C_COMPILER_WORKS TRUE)
@ -68,6 +71,7 @@ endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;gcc;c;nosys") set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;gcc;c;nosys")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/7.3.1;/usr/lib/arm-none-eabi/lib") set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

@ -1,28 +1,31 @@
set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++")
set(CMAKE_CXX_COMPILER_ARG1 "") set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU") set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "7.3.1") set(CMAKE_CXX_COMPILER_VERSION "8.3.1")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "") set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") set(CMAKE_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_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") 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_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_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_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "") set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX_PLATFORM_ID "") set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "") set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "") set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") set(CMAKE_AR "/usr/bin/arm-none-eabi-ar")
set(CMAKE_CXX_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") set(CMAKE_CXX_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar")
set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib")
set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX 1) set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1) set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE) set(CMAKE_CXX_COMPILER_WORKS TRUE)
@ -40,8 +43,17 @@ if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1) set(MINGW 1)
endif() endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1) set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30) set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
@ -71,6 +83,7 @@ endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/arm-none-eabi/include/c++/8.3.1;/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi;/usr/lib/arm-none-eabi/include/c++/8.3.1/backward;/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;gcc;c;nosys") set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;gcc;c;nosys")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/7.3.1;/usr/lib/arm-none-eabi/lib") set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

@ -1,13 +1,13 @@
set(CMAKE_HOST_SYSTEM "Linux-5.8.0-0.bpo.2-amd64") set(CMAKE_HOST_SYSTEM "Linux-5.10.0-9-amd64")
set(CMAKE_HOST_SYSTEM_NAME "Linux") set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.8.0-0.bpo.2-amd64") set(CMAKE_HOST_SYSTEM_VERSION "5.10.0-9-amd64")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Linux-5.8.0-0.bpo.2-amd64") set(CMAKE_SYSTEM "Linux-5.10.0-9-amd64")
set(CMAKE_SYSTEM_NAME "Linux") set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "5.8.0-0.bpo.2-amd64") set(CMAKE_SYSTEM_VERSION "5.10.0-9-amd64")
set(CMAKE_SYSTEM_PROCESSOR "x86_64") set(CMAKE_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_CROSSCOMPILING "FALSE") set(CMAKE_CROSSCOMPILING "FALSE")

@ -19,6 +19,9 @@
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
# if defined(_MSC_VER) # if defined(_MSC_VER)
# define SIMULATE_ID "MSVC" # define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif # endif
/* __INTEL_COMPILER = VRP */ /* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@ -37,6 +40,17 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif # endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(__PATHCC__) #elif defined(__PATHCC__)
# define COMPILER_ID "PathScale" # define COMPILER_ID "PathScale"
@ -106,48 +120,32 @@
#elif defined(__IBMC__) && defined(__COMPILER_VER__) #elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS" # define COMPILER_ID "zOS"
# if defined(__ibmxl__) /* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# endif
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__ibmxl__) || (defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800)
# define COMPILER_ID "XL"
# if defined(__ibmxl__)
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# endif
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 #elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge" # define COMPILER_ID "VisualAge"
# if defined(__ibmxl__) /* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# endif
#elif defined(__PGI) #elif defined(__PGI)
# define COMPILER_ID "PGI" # define COMPILER_ID "PGI"
@ -172,6 +170,15 @@
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) #elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu" # define COMPILER_ID "Fujitsu"
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TINYC__) #elif defined(__TINYC__)
# define COMPILER_ID "TinyCC" # define COMPILER_ID "TinyCC"
@ -181,6 +188,21 @@
#elif defined(__SCO_VERSION__) #elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO" # define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__) #elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang" # define COMPILER_ID "AppleClang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@ -196,6 +218,13 @@
# endif # endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) #elif defined(__clang__)
# define COMPILER_ID "Clang" # define COMPILER_ID "Clang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@ -249,28 +278,18 @@
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR" # define COMPILER_ID "IAR"
# if defined(__VER__) # if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif # endif
#elif defined(__ARMCC_VERSION)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) #elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC" # define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR) # if defined(__SDCC_VERSION_MAJOR)
@ -284,27 +303,10 @@
# define COMPILER_VERSION_PATCH DEC(SDCC % 10) # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif # endif
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
# endif
/* These compilers are either not known or too old to define an /* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that identification macro. Try to identify the platform and guess that
it is the native compiler. */ it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID "MIPSpro"
#elif defined(__hpux) || defined(__hpua) #elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP" # define COMPILER_ID "HP"
@ -363,9 +365,6 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX" # define PLATFORM_ID "AIX"
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#elif defined(__hpux) || defined(__hpux__) #elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX" # define PLATFORM_ID "HP-UX"
@ -421,10 +420,21 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# elif defined(__WINDOWS__) # elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x" # define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */ # else /* unknown platform */
# define PLATFORM_ID # define PLATFORM_ID
# endif # endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
#else /* unknown platform */ #else /* unknown platform */
# define PLATFORM_ID # define PLATFORM_ID
@ -482,9 +492,50 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(__ICCARM__) # if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM" # define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__) # elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR" # define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */ # else /* unknown architecture */
# define ARCHITECTURE_ID "" # define ARCHITECTURE_ID ""
# endif # endif

@ -19,6 +19,9 @@
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
# if defined(_MSC_VER) # if defined(_MSC_VER)
# define SIMULATE_ID "MSVC" # define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif # endif
/* __INTEL_COMPILER = VRP */ /* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@ -37,6 +40,17 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif # endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(__PATHCC__) #elif defined(__PATHCC__)
# define COMPILER_ID "PathScale" # define COMPILER_ID "PathScale"
@ -106,48 +120,32 @@
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) #elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS" # define COMPILER_ID "zOS"
# if defined(__ibmxl__) /* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# endif
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__ibmxl__) || (defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800)
# define COMPILER_ID "XL"
# if defined(__ibmxl__)
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# endif
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 #elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge" # define COMPILER_ID "VisualAge"
# if defined(__ibmxl__) /* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# endif
#elif defined(__PGI) #elif defined(__PGI)
# define COMPILER_ID "PGI" # define COMPILER_ID "PGI"
@ -172,9 +170,33 @@
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) #elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu" # define COMPILER_ID "Fujitsu"
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__SCO_VERSION__) #elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO" # define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__) #elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang" # define COMPILER_ID "AppleClang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@ -190,6 +212,13 @@
# endif # endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) # define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) #elif defined(__clang__)
# define COMPILER_ID "Clang" # define COMPILER_ID "Clang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@ -247,49 +276,22 @@
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) #elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR" # define COMPILER_ID "IAR"
# if defined(__VER__) # if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) # define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif # elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
#elif defined(__ARMCC_VERSION) # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_ID "ARMCC" # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
#if __ARMCC_VERSION >= 1000000 # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
# endif # endif
/* These compilers are either not known or too old to define an /* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that identification macro. Try to identify the platform and guess that
it is the native compiler. */ it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID "MIPSpro"
#elif defined(__hpux) || defined(__hpua) #elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP" # define COMPILER_ID "HP"
@ -348,9 +350,6 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) #elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX" # define PLATFORM_ID "AIX"
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#elif defined(__hpux) || defined(__hpux__) #elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX" # define PLATFORM_ID "HP-UX"
@ -406,10 +405,21 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# elif defined(__WINDOWS__) # elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x" # define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */ # else /* unknown platform */
# define PLATFORM_ID # define PLATFORM_ID
# endif # endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
#else /* unknown platform */ #else /* unknown platform */
# define PLATFORM_ID # define PLATFORM_ID
@ -467,9 +477,50 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(__ICCARM__) # if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM" # define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__) # elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR" # define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */ # else /* unknown architecture */
# define ARCHITECTURE_ID "" # define ARCHITECTURE_ID ""
# endif # endif
@ -554,10 +605,20 @@ char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(_MSC_VER) && defined(_MSVC_LANG) #if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
#define CXX_STD _MSVC_LANG # if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else #else
#define CXX_STD __cplusplus # define CXX_STD __cplusplus
#endif #endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default[" const char* info_language_dialect_default = "INFO" ":" "dialect_default["

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -5,8 +5,8 @@ Id flags:
The output was: The output was:
1 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': /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/8.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' /build/newlib-kGgvwE/newlib-3.3.0/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit'
collect2: error: ld returned 1 exit status collect2: error: ld returned 1 exit status
@ -17,8 +17,8 @@ Id flags:
The output was: The output was:
1 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': /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/8.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' /build/newlib-kGgvwE/newlib-3.3.0/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit'
collect2: error: ld returned 1 exit status collect2: error: ld returned 1 exit status

@ -1,7 +1,7 @@
The system is: Linux - 5.8.0-0.bpo.2-amd64 - x86_64 The system is: Linux - 5.10.0-9-amd64 - x86_64
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": 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] arm-none-eabi-gcc (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027]
Copyright (C) 2017 Free Software Foundation, Inc. Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@ -16,7 +16,7 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" 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/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.o" The C compiler identification is GNU, found in "/home/key/Git/ked/bsl/build/CMakeFiles/3.18.4/CompilerIdC/CMakeCCompilerId.o"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/arm-none-eabi-g++ Compiler: /usr/bin/arm-none-eabi-g++
@ -29,80 +29,138 @@ The output was:
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" 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/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.o" The CXX compiler identification is GNU, found in "/home/key/Git/ked/bsl/build/CMakeFiles/3.18.4/CompilerIdCXX/CMakeCXXCompilerId.o"
Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7d686/fast"
/usr/bin/make -f CMakeFiles/cmTC_7d686.dir/build.make CMakeFiles/cmTC_7d686.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7d686.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_7d686.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_7d686
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7d686.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_7d686.dir/testCCompiler.c.o -o cmTC_7d686
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output: Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp Change Dir: /home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_d21f9/fast" Run Build Command(s):/usr/bin/gmake cmTC_c84ab/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c84ab.dir/build.make CMakeFiles/cmTC_c84ab.dir/build
/usr/bin/make -f CMakeFiles/cmTC_d21f9.dir/build.make CMakeFiles/cmTC_d21f9.dir/build gmake[1]: Entering directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp'
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o
Building C object CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o /usr/bin/arm-none-eabi-gcc -v -o CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c Using built-in specs.
Linking C executable cmTC_d21f9 COLLECT_GCC=/usr/bin/arm-none-eabi-gcc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d21f9.dir/link.txt --verbose=1 Target: arm-none-eabi
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -o cmTC_d21f9 Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip
Thread model: single
gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/8.3.1/cc1 -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -version -o /tmp/cc79XynB.s
GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)
compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/arm-none-eabi/8.3.1/include
/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include
End of search list.
GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)
compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 540051d21a901f95ab937f0fc815eb0d
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o /tmp/cc79XynB.s
GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
Linking C executable cmTC_c84ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c84ab.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -o cmTC_c84ab
Using built-in specs. Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/usr/bin/arm-none-eabi-gcc COLLECT_GCC=/usr/bin/arm-none-eabi-gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper
Target: arm-none-eabi Target: arm-none-eabi
Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:7-2018-q2-6 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip
Thread model: single Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1)
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c84ab' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9leys6.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_d21f9 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cczUaK34.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c84ab /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c84ab' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp' gmake[1]: Leaving directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include]
end of search list found
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] ==> [/usr/lib/arm-none-eabi/include]
implicit include dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include]
Parsed C implicit link information from above output: Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-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/build/CMakeFiles/CMakeTmp] ignore line: [Change Dir: /home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_c84ab/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c84ab.dir/build.make CMakeFiles/cmTC_c84ab.dir/build]
ignore line: [gmake[1]: Entering directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -v -o CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-gcc]
ignore line: [Target: arm-none-eabi]
ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip]
ignore line: [Thread model: single]
ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/cc1 -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -version -o /tmp/cc79XynB.s]
ignore line: [GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_d21f9/fast"] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_d21f9.dir/build.make CMakeFiles/cmTC_d21f9.dir/build] ignore line: [Compiler executable checksum: 540051d21a901f95ab937f0fc815eb0d]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [Building C object CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o] ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o /tmp/cc79XynB.s]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] ignore line: [GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2]
ignore line: [Linking C executable cmTC_d21f9] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d21f9.dir/link.txt --verbose=1] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -o cmTC_d21f9 ] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [Linking C executable cmTC_c84ab]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c84ab.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o -o cmTC_c84ab ]
ignore line: [Using built-in specs.] ignore line: [Using built-in specs.]
ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-gcc] ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-gcc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper]
ignore line: [Target: arm-none-eabi] ignore line: [Target: arm-none-eabi]
ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:7-2018-q2-6 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip]
ignore line: [Thread model: single] ignore line: [Thread model: single]
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9'] ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c84ab' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9leys6.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_d21f9 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] link line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cczUaK34.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c84ab /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc9leys6.res] ==> ignore arg [-plugin-opt=-fresolution=/tmp/cczUaK34.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
@ -110,13 +168,13 @@ Parsed C implicit link information from above output:
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore arg [-X] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [cmTC_d21f9] ==> ignore arg [cmTC_c84ab] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crti.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1]
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o] ==> ignore arg [CMakeFiles/cmTC_c84ab.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [--start-group] ==> ignore arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc] arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c] arg [-lc] ==> lib [c]
@ -126,147 +184,157 @@ Parsed C implicit link information from above output:
arg [-lc] ==> lib [c] arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys] arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore arg [--end-group] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/arm-none-eabi/7.3.1] ==> [/usr/lib/gcc/arm-none-eabi/7.3.1] collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1]
collapse library dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib] collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib]
implicit libs: [gcc;c;gcc;c;nosys] implicit libs: [gcc;c;gcc;c;nosys]
implicit dirs: [/usr/lib/gcc/arm-none-eabi/7.3.1;/usr/lib/arm-none-eabi/lib] implicit dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib]
implicit fwks: [] implicit fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e7393/fast"
/usr/bin/make -f CMakeFiles/cmTC_e7393.dir/build.make CMakeFiles/cmTC_e7393.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e7393.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_e7393.dir/feature_tests.c.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_e7393
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e7393.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_e7393.dir/feature_tests.c.o -o cmTC_e7393
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:1c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8e31e/fast"
/usr/bin/make -f CMakeFiles/cmTC_8e31e.dir/build.make CMakeFiles/cmTC_8e31e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8e31e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_8e31e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_8e31e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8e31e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_8e31e.dir/feature_tests.c.o -o cmTC_8e31e
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a31e3/fast"
/usr/bin/make -f CMakeFiles/cmTC_a31e3.dir/build.make CMakeFiles/cmTC_a31e3.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a31e3.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_a31e3.dir/feature_tests.c.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_a31e3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a31e3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a31e3.dir/feature_tests.c.o -o cmTC_a31e3
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:0c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_08264/fast"
/usr/bin/make -f CMakeFiles/cmTC_08264.dir/build.make CMakeFiles/cmTC_08264.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_08264.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_08264.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_08264
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_08264.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_08264.dir/testCXXCompiler.cxx.o -o cmTC_08264
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output: Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp Change Dir: /home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_90d43/fast" Run Build Command(s):/usr/bin/gmake cmTC_e5bec/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e5bec.dir/build.make CMakeFiles/cmTC_e5bec.dir/build
/usr/bin/make -f CMakeFiles/cmTC_90d43.dir/build.make CMakeFiles/cmTC_90d43.dir/build gmake[1]: Entering directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp'
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o
Building CXX object CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o /usr/bin/arm-none-eabi-g++ -v -o CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp Using built-in specs.
Linking CXX executable cmTC_90d43 COLLECT_GCC=/usr/bin/arm-none-eabi-g++
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90d43.dir/link.txt --verbose=1 Target: arm-none-eabi
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_90d43 Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip
Thread model: single
gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/8.3.1/cc1plus -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccHoNpiC.s
GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)
compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward
/usr/lib/gcc/arm-none-eabi/8.3.1/include
/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include
End of search list.
GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)
compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 2997647168e1093b6d37ca7192a93286
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccHoNpiC.s
GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
Linking CXX executable cmTC_e5bec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5bec.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_e5bec
Using built-in specs. Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/usr/bin/arm-none-eabi-g++ COLLECT_GCC=/usr/bin/arm-none-eabi-g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper
Target: arm-none-eabi Target: arm-none-eabi
Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:7-2018-q2-6 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip
Thread model: single Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1)
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e5bec' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cce2KC3G.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_90d43 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccI0Vg04.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e5bec /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e5bec' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp' gmake[1]: Leaving directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include]
end of search list found
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1/backward]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] ==> [/usr/lib/arm-none-eabi/include]
implicit include dirs: [/usr/lib/arm-none-eabi/include/c++/8.3.1;/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi;/usr/lib/arm-none-eabi/include/c++/8.3.1/backward;/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include]
Parsed CXX implicit link information from above output: Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-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/build/CMakeFiles/CMakeTmp] ignore line: [Change Dir: /home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_e5bec/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e5bec.dir/build.make CMakeFiles/cmTC_e5bec.dir/build]
ignore line: [gmake[1]: Entering directory '/home/key/Git/ked/bsl/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -v -o CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-g++]
ignore line: [Target: arm-none-eabi]
ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip]
ignore line: [Thread model: single]
ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/cc1plus -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccHoNpiC.s]
ignore line: [GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed]
ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)]
ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_90d43/fast"] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_90d43.dir/build.make CMakeFiles/cmTC_90d43.dir/build] ignore line: [Compiler executable checksum: 2997647168e1093b6d37ca7192a93286]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [Building CXX object CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o] ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccHoNpiC.s]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] ignore line: [GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2]
ignore line: [Linking CXX executable cmTC_90d43] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90d43.dir/link.txt --verbose=1] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_90d43 ] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
ignore line: [Linking CXX executable cmTC_e5bec]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5bec.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_e5bec ]
ignore line: [Using built-in specs.] ignore line: [Using built-in specs.]
ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-g++] ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-g++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper]
ignore line: [Target: arm-none-eabi] ignore line: [Target: arm-none-eabi]
ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:7-2018-q2-6 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/tmp/building/package=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip]
ignore line: [Thread model: single] ignore line: [Thread model: single]
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43'] ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e5bec' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cce2KC3G.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_90d43 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] link line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccI0Vg04.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e5bec /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cce2KC3G.res] ==> ignore arg [-plugin-opt=-fresolution=/tmp/ccI0Vg04.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
@ -274,13 +342,13 @@ Parsed CXX implicit link information from above output:
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore arg [-X] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [cmTC_90d43] ==> ignore arg [cmTC_e5bec] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crti.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1]
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [CMakeFiles/cmTC_e5bec.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++] arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m] arg [-lm] ==> lib [m]
arg [--start-group] ==> ignore arg [--start-group] ==> ignore
@ -292,304 +360,12 @@ Parsed CXX implicit link information from above output:
arg [-lc] ==> lib [c] arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys] arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore arg [--end-group] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/arm-none-eabi/7.3.1] ==> [/usr/lib/gcc/arm-none-eabi/7.3.1] collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1]
collapse library dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib] collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib]
implicit libs: [stdc++;m;gcc;c;gcc;c;nosys] implicit libs: [stdc++;m;gcc;c;gcc;c;nosys]
implicit dirs: [/usr/lib/gcc/arm-none-eabi/7.3.1;/usr/lib/arm-none-eabi/lib] implicit dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib]
implicit fwks: [] implicit fwks: []
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_4b163/fast"
/usr/bin/make -f CMakeFiles/cmTC_4b163.dir/build.make CMakeFiles/cmTC_4b163.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_4b163.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_4b163.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_4b163
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4b163.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_4b163.dir/feature_tests.cxx.o -o cmTC_4b163
make[1]: Leaving directory '/home/key/github/KED/bsl/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++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_fac64/fast"
/usr/bin/make -f CMakeFiles/cmTC_fac64.dir/build.make CMakeFiles/cmTC_fac64.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_fac64.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_fac64.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_fac64
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fac64.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_fac64.dir/feature_tests.cxx.o -o cmTC_fac64
make[1]: Leaving directory '/home/key/github/KED/bsl/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++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_481ab/fast"
/usr/bin/make -f CMakeFiles/cmTC_481ab.dir/build.make CMakeFiles/cmTC_481ab.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_481ab.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_481ab.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_481ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_481ab.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_481ab.dir/feature_tests.cxx.o -o cmTC_481ab
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_61008/fast"
/usr/bin/make -f CMakeFiles/cmTC_61008.dir/build.make CMakeFiles/cmTC_61008.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_61008.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_61008.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_61008
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61008.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_61008.dir/feature_tests.cxx.o -o cmTC_61008
make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:0cxx_alias_templates
Feature record: CXX_FEATURE:0cxx_alignas
Feature record: CXX_FEATURE:0cxx_alignof
Feature record: CXX_FEATURE:0cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:0cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:0cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:0cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:0cxx_default_function_template_args
Feature record: CXX_FEATURE:0cxx_defaulted_functions
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:0cxx_delegating_constructors
Feature record: CXX_FEATURE:0cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
Feature record: CXX_FEATURE:0cxx_explicit_conversions
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
Feature record: CXX_FEATURE:0cxx_extern_templates
Feature record: CXX_FEATURE:0cxx_final
Feature record: CXX_FEATURE:0cxx_func_identifier
Feature record: CXX_FEATURE:0cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
Feature record: CXX_FEATURE:0cxx_inline_namespaces
Feature record: CXX_FEATURE:0cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:0cxx_local_type_template_args
Feature record: CXX_FEATURE:0cxx_long_long_type
Feature record: CXX_FEATURE:0cxx_noexcept
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
Feature record: CXX_FEATURE:0cxx_nullptr
Feature record: CXX_FEATURE:0cxx_override
Feature record: CXX_FEATURE:0cxx_range_for
Feature record: CXX_FEATURE:0cxx_raw_string_literals
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
Feature record: CXX_FEATURE:0cxx_rvalue_references
Feature record: CXX_FEATURE:0cxx_sizeof_member
Feature record: CXX_FEATURE:0cxx_static_assert
Feature record: CXX_FEATURE:0cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:0cxx_thread_local
Feature record: CXX_FEATURE:0cxx_trailing_return_types
Feature record: CXX_FEATURE:0cxx_unicode_literals
Feature record: CXX_FEATURE:0cxx_uniform_initialization
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
Feature record: CXX_FEATURE:0cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# The generator used is: # The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
@ -8,104 +8,107 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
set(CMAKE_MAKEFILE_DEPENDS set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt" "CMakeCache.txt"
"../CMakeLists.txt" "../CMakeLists.txt"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/3.18.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.18.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake"
"CMakeFiles/3.13.4/CMakeSystem.cmake" "CMakeFiles/3.18.4/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c"
"CMakeFiles/feature_tests.cxx"
"../csl/CMakeLists.txt" "../csl/CMakeLists.txt"
"../csl/stm32f042/CMakeLists.txt" "../csl/stm32f042/CMakeLists.txt"
"../csl/stm32f042/Drivers/CMakeLists.txt" "../csl/stm32f042/Drivers/CMakeLists.txt"
"../csl/stm32f042/Src/CMakeLists.txt" "../csl/stm32f042/Src/CMakeLists.txt"
"../csl/stm32f042/startup/CMakeLists.txt" "../csl/stm32f042/startup/CMakeLists.txt"
"/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in" "../nucleo_f042k6/CMakeLists.txt"
"/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake" "../nucleo_f042k6/bsl_nucleo_f042k6.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in" "/usr/share/cmake-3.18/Modules/CMakeASMCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c" "/usr/share/cmake-3.18/Modules/CMakeASMInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCInformation.cmake" "/usr/share/cmake-3.18/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeCXXCompiler.cmake.in" "/usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp" "/usr/share/cmake-3.18/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCXXInformation.cmake" "/usr/share/cmake-3.18/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeCommonLanguageInclude.cmake" "/usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.13/Modules/CMakeCompilerIdDetection.cmake" "/usr/share/cmake-3.18/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineASMCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCXXCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompileFeatures.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineASMCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerABI.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerId.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineSystem.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeFindBinUtils.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.13/Modules/CMakeGenericSystem.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.13/Modules/CMakeInitializeConfigs.cmake" "/usr/share/cmake-3.18/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.13/Modules/CMakeLanguageInformation.cmake" "/usr/share/cmake-3.18/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.13/Modules/CMakeParseImplicitLinkInfo.cmake" "/usr/share/cmake-3.18/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.13/Modules/CMakeSystem.cmake.in" "/usr/share/cmake-3.18/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInformation.cmake" "/usr/share/cmake-3.18/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInitialize.cmake" "/usr/share/cmake-3.18/Modules/CMakeParseImplicitIncludeInfo.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestASMCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestCCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeTestCXXCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestCompilerCommon.cmake" "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.13/Modules/CMakeUnixFindMake.cmake" "/usr/share/cmake-3.18/Modules/CMakeTestASMCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/ADSP-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/ARMCC-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/AppleClang-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Borland-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/CMakeCommonCompilerMacros.cmake" "/usr/share/cmake-3.18/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" "/usr/share/cmake-3.18/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Cray-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GHS-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-ASM.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C-FeatureTests.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-FeatureTests.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-ASM.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-FindBinUtils.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/HP-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IAR-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" "/usr/share/cmake-3.18/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" "/usr/share/cmake-3.18/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Intel-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/MSVC-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/PGI-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/PathScale-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SCO-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/TI-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Watcom-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/XL-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/zOS-C-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.18/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Internal/FeatureTesting.cmake" "/usr/share/cmake-3.18/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-Determine-CXX.cmake" "/usr/share/cmake-3.18/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-C.cmake" "/usr/share/cmake-3.18/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-CXX.cmake" "/usr/share/cmake-3.18/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU.cmake" "/usr/share/cmake-3.18/Modules/Internal/CMakeCheckCompilerFlag.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux.cmake" "/usr/share/cmake-3.18/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.13/Modules/Platform/UnixPaths.cmake" "/usr/share/cmake-3.18/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.18/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.18/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.18/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.18/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.18/Modules/Platform/UnixPaths.cmake"
) )
# The corresponding makefile is: # The corresponding makefile is:
@ -116,18 +119,19 @@ set(CMAKE_MAKEFILE_OUTPUTS
# Byproducts of CMake generate step: # Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.13.4/CMakeSystem.cmake" "CMakeFiles/3.18.4/CMakeSystem.cmake"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/3.18.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.18.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.18.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake"
"nucleo_f042k6/CMakeFiles/CMakeDirectoryInformation.cmake"
) )
# Dependency information for all targets: # Dependency information for all targets:
@ -135,5 +139,6 @@ set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
"csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake" "csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"csl/stm32f042/Src/CMakeFiles/CSources.dir/DependInfo.cmake" "csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake"
"nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake"
) )

@ -1,42 +1,46 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
.PHONY : default_target .PHONY : default_target
# The main recursive all target #=============================================================================
all: # Special targets provided by cmake.
.PHONY : all # Disable implicit rules so canonical targets will work.
.SUFFIXES:
# The main recursive preinstall target
preinstall:
.PHONY : preinstall # Disable VCS-based implicit rules.
% : %,v
# The main recursive clean target
clean:
.PHONY : clean # Disable VCS-based implicit rules.
% : RCS/%
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work. # Disable VCS-based implicit rules.
.SUFFIXES: % : RCS/%,v
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -53,191 +57,226 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Target rules for target CMakeFiles/refOvenTest.out.dir # Directory level rules for the build root directory
# All Build rule for target. # The main recursive "all" target.
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/Src/CMakeFiles/CSources.dir/all
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=13,14 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
all: CMakeFiles/refOvenTest.out.dir/all all: CMakeFiles/refOvenTest.out.dir/all
all: csl/all
all: nucleo_f042k6/all
.PHONY : all .PHONY : all
# Build rule for subdir invocation for target. # The main recursive "preinstall" target.
CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system preinstall: csl/preinstall
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 14 preinstall: nucleo_f042k6/preinstall
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : CMakeFiles/refOvenTest.out.dir/rule
# Convenience name for target.
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule
.PHONY : refOvenTest.out .PHONY : preinstall
# clean rule for target.
CMakeFiles/refOvenTest.out.dir/clean:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean
.PHONY : CMakeFiles/refOvenTest.out.dir/clean
# clean rule for target. # The main recursive "clean" target.
clean: CMakeFiles/refOvenTest.out.dir/clean clean: CMakeFiles/refOvenTest.out.dir/clean
clean: csl/clean
clean: nucleo_f042k6/clean
.PHONY : clean .PHONY : clean
#============================================================================= #=============================================================================
# Directory level rules for directory csl # Directory level rules for directory csl
# Convenience name for "all" pass in the directory. # Recursive "all" directory target.
csl/all: csl/stm32f042/all csl/all: csl/stm32f042/all
.PHONY : csl/all .PHONY : csl/all
# Convenience name for "clean" pass in the directory. # Recursive "preinstall" directory target.
csl/clean: csl/stm32f042/clean
.PHONY : csl/clean
# Convenience name for "preinstall" pass in the directory.
csl/preinstall: csl/stm32f042/preinstall csl/preinstall: csl/stm32f042/preinstall
.PHONY : csl/preinstall .PHONY : csl/preinstall
# Recursive "clean" directory target.
csl/clean: csl/stm32f042/clean
.PHONY : csl/clean
#============================================================================= #=============================================================================
# Directory level rules for directory csl/stm32f042 # Directory level rules for directory csl/stm32f042
# Convenience name for "all" pass in the directory. # Recursive "all" directory target.
csl/stm32f042/all: csl/stm32f042/Drivers/all csl/stm32f042/all: csl/stm32f042/Drivers/all
csl/stm32f042/all: csl/stm32f042/startup/all csl/stm32f042/all: csl/stm32f042/startup/all
csl/stm32f042/all: csl/stm32f042/Src/all csl/stm32f042/all: csl/stm32f042/Src/all
.PHONY : csl/stm32f042/all .PHONY : csl/stm32f042/all
# Convenience name for "clean" pass in the directory. # Recursive "preinstall" directory target.
csl/stm32f042/clean: csl/stm32f042/Drivers/clean
csl/stm32f042/clean: csl/stm32f042/startup/clean
csl/stm32f042/clean: csl/stm32f042/Src/clean
.PHONY : csl/stm32f042/clean
# Convenience name for "preinstall" pass in the directory.
csl/stm32f042/preinstall: csl/stm32f042/Drivers/preinstall csl/stm32f042/preinstall: csl/stm32f042/Drivers/preinstall
csl/stm32f042/preinstall: csl/stm32f042/startup/preinstall csl/stm32f042/preinstall: csl/stm32f042/startup/preinstall
csl/stm32f042/preinstall: csl/stm32f042/Src/preinstall csl/stm32f042/preinstall: csl/stm32f042/Src/preinstall
.PHONY : csl/stm32f042/preinstall .PHONY : csl/stm32f042/preinstall
# Recursive "clean" directory target.
csl/stm32f042/clean: csl/stm32f042/Drivers/clean
csl/stm32f042/clean: csl/stm32f042/startup/clean
csl/stm32f042/clean: csl/stm32f042/Src/clean
.PHONY : csl/stm32f042/clean
#============================================================================= #=============================================================================
# Directory level rules for directory csl/stm32f042/Drivers # Directory level rules for directory csl/stm32f042/Drivers
# Convenience name for "all" pass in the directory. # Recursive "all" directory target.
csl/stm32f042/Drivers/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all csl/stm32f042/Drivers/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
.PHONY : csl/stm32f042/Drivers/all .PHONY : csl/stm32f042/Drivers/all
# Convenience name for "clean" pass in the directory. # Recursive "preinstall" directory target.
csl/stm32f042/Drivers/clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : csl/stm32f042/Drivers/clean
# Convenience name for "preinstall" pass in the directory.
csl/stm32f042/Drivers/preinstall: csl/stm32f042/Drivers/preinstall:
.PHONY : csl/stm32f042/Drivers/preinstall .PHONY : csl/stm32f042/Drivers/preinstall
#============================================================================= # Recursive "clean" directory target.
# Target rules for target csl/stm32f042/Drivers/CMakeFiles/Drivers.dir csl/stm32f042/Drivers/clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
# All Build rule for target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all:
$(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend
$(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=5,6,7,8,9,10 "Built target Drivers"
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
# Include target in all. .PHONY : csl/stm32f042/Drivers/clean
all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
.PHONY : all #=============================================================================
# Directory level rules for directory csl/stm32f042/Src
# Build rule for subdir invocation for target. # Recursive "all" directory target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule: cmake_check_build_system csl/stm32f042/Src/all: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 6
$(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
# Convenience name for target. .PHONY : csl/stm32f042/Src/all
Drivers: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers # Recursive "preinstall" directory target.
csl/stm32f042/Src/preinstall:
# clean rule for target. .PHONY : csl/stm32f042/Src/preinstall
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean:
$(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
# clean rule for target. # Recursive "clean" directory target.
clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean csl/stm32f042/Src/clean: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean
.PHONY : clean .PHONY : csl/stm32f042/Src/clean
#============================================================================= #=============================================================================
# Directory level rules for directory csl/stm32f042/startup # Directory level rules for directory csl/stm32f042/startup
# Convenience name for "all" pass in the directory. # Recursive "all" directory target.
csl/stm32f042/startup/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all csl/stm32f042/startup/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all
.PHONY : csl/stm32f042/startup/all .PHONY : csl/stm32f042/startup/all
# Convenience name for "clean" pass in the directory. # Recursive "preinstall" directory target.
csl/stm32f042/startup/preinstall:
.PHONY : csl/stm32f042/startup/preinstall
# Recursive "clean" directory target.
csl/stm32f042/startup/clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean csl/stm32f042/startup/clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
.PHONY : csl/stm32f042/startup/clean .PHONY : csl/stm32f042/startup/clean
# Convenience name for "preinstall" pass in the directory. #=============================================================================
csl/stm32f042/startup/preinstall: # Directory level rules for directory nucleo_f042k6
.PHONY : csl/stm32f042/startup/preinstall # Recursive "all" directory target.
nucleo_f042k6/all: nucleo_f042k6/CMakeFiles/stmTranslator.dir/all
.PHONY : nucleo_f042k6/all
# Recursive "preinstall" directory target.
nucleo_f042k6/preinstall:
.PHONY : nucleo_f042k6/preinstall
# Recursive "clean" directory target.
nucleo_f042k6/clean: nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean
.PHONY : nucleo_f042k6/clean
#=============================================================================
# Target rules for target CMakeFiles/refOvenTest.out.dir
# All Build rule for target.
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all
CMakeFiles/refOvenTest.out.dir/all: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all
CMakeFiles/refOvenTest.out.dir/all: nucleo_f042k6/CMakeFiles/stmTranslator.dir/all
$(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=13,14 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 16
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : CMakeFiles/refOvenTest.out.dir/rule
# Convenience name for target.
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule
.PHONY : refOvenTest.out
# clean rule for target.
CMakeFiles/refOvenTest.out.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean
.PHONY : CMakeFiles/refOvenTest.out.dir/clean
#=============================================================================
# Target rules for target csl/stm32f042/Drivers/CMakeFiles/Drivers.dir
# All Build rule for target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all:
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=5,6,7,8,9,10 "Built target Drivers"
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
# Build rule for subdir invocation for target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 6
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
# Convenience name for target.
Drivers: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers
# clean rule for target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean:
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
#============================================================================= #=============================================================================
# Target rules for target csl/stm32f042/startup/CMakeFiles/Startup.dir # Target rules for target csl/stm32f042/startup/CMakeFiles/Startup.dir
# All Build rule for target. # All Build rule for target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all:
$(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/depend $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/depend
$(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=11,12 "Built target Startup" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=11,12 "Built target Startup"
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/all .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/all
# Include target in all.
all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all
.PHONY : all
# Build rule for subdir invocation for target. # Build rule for subdir invocation for target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/rule: cmake_check_build_system csl/stm32f042/startup/CMakeFiles/Startup.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 2 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 2
$(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/all $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# Convenience name for target. # Convenience name for target.
@ -247,68 +286,62 @@ Startup: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# clean rule for target. # clean rule for target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean:
$(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/clean $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/clean .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
# clean rule for target.
clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
.PHONY : clean
#============================================================================= #=============================================================================
# Directory level rules for directory csl/stm32f042/Src # Target rules for target csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir
# Convenience name for "all" pass in the directory.
csl/stm32f042/Src/all: csl/stm32f042/Src/CMakeFiles/CSources.dir/all
.PHONY : csl/stm32f042/Src/all # All Build rule for target.
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=1,2,3,4 "Built target Csl_Stm32f0xx"
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all
# Convenience name for "clean" pass in the directory. # Build rule for subdir invocation for target.
csl/stm32f042/Src/clean: csl/stm32f042/Src/CMakeFiles/CSources.dir/clean csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 10
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule
.PHONY : csl/stm32f042/Src/clean # Convenience name for target.
Csl_Stm32f0xx: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule
# Convenience name for "preinstall" pass in the directory. .PHONY : Csl_Stm32f0xx
csl/stm32f042/Src/preinstall:
.PHONY : csl/stm32f042/Src/preinstall # clean rule for target.
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean:
$(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean
#============================================================================= #=============================================================================
# Target rules for target csl/stm32f042/Src/CMakeFiles/CSources.dir # Target rules for target nucleo_f042k6/CMakeFiles/stmTranslator.dir
# All Build rule for target. # All Build rule for target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all nucleo_f042k6/CMakeFiles/stmTranslator.dir/all:
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/depend $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/build $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=1,2,3,4 "Built target CSources" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=15,16 "Built target stmTranslator"
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/all .PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/all
# Include target in all.
all: csl/stm32f042/Src/CMakeFiles/CSources.dir/all
.PHONY : all
# Build rule for subdir invocation for target. # Build rule for subdir invocation for target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/rule: cmake_check_build_system nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 10 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 2
$(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/CSources.dir/all $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/CMakeFiles/stmTranslator.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/rule .PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule
# Convenience name for target. # Convenience name for target.
CSources: csl/stm32f042/Src/CMakeFiles/CSources.dir/rule stmTranslator: nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule
.PHONY : CSources
# clean rule for target. .PHONY : stmTranslator
csl/stm32f042/Src/CMakeFiles/CSources.dir/clean:
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
# clean rule for target. # clean rule for target.
clean: csl/stm32f042/Src/CMakeFiles/CSources.dir/clean nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean:
$(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean
.PHONY : clean .PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean
#============================================================================= #=============================================================================
# Special targets to cleanup operation of make. # Special targets to cleanup operation of make.

@ -1,16 +1,19 @@
/home/key/github/KED/bsl/build/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/CMakeFiles/refOvenTest.out.dir /home/key/Git/ked/bsl/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/build/csl/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/csl/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/csl/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir /home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/rebuild_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/edit_cache.dir /home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir
/home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/rebuild_cache.dir
/home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/edit_cache.dir
/home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/stmTranslator.dir

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

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

@ -6,67 +6,67 @@
#IncludeRegexTransform: #IncludeRegexTransform:
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h core_cm0.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h stdint.h
- -
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h stm32f030x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h stm32f030x8.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h stm32f031x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h stm32f038xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h stm32f048xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h stm32f051x8.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h stm32f058xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h stm32f070x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h stm32f070xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h stm32f071xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h stm32f072xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h stm32f078xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h stm32f091xc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h stm32f098xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h stm32f030xc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h stm32f0xx_hal.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
arm_compat.h arm_compat.h
- -
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h stdint.h
- -
cmsis_armcc.h cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h cmsis_iccarm.h
- -
cmsis_ccs.h cmsis_ccs.h
@ -74,95 +74,99 @@ cmsis_ccs.h
cmsis_csm.h cmsis_csm.h
- -
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h iccarm_builtin.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/iccarm_builtin.h ../csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h intrinsics.h
- -
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
stdint.h stdint.h
- -
cmsis_version.h cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Inc/stm32_assert.h ../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h ../csl/stm32f042/Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h stm32f0xx_ll_crs.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_crs.h ../csl/stm32f042/Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h stm32f0xx_ll_rcc.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_rcc.h ../csl/stm32f042/Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h stm32f0xx_ll_bus.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_bus.h ../csl/stm32f042/Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h stm32f0xx_ll_system.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_system.h ../csl/stm32f042/Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h stm32f0xx_ll_exti.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_exti.h ../csl/stm32f042/Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h stm32f0xx_ll_cortex.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_cortex.h ../csl/stm32f042/Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h stm32f0xx_ll_utils.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_utils.h ../csl/stm32f042/Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h stm32f0xx_ll_pwr.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_pwr.h ../csl/stm32f042/Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h stm32f0xx_ll_dma.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_dma.h ../csl/stm32f042/Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h stm32f0xx_ll_gpio.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_gpio.h ../csl/stm32f042/Inc/stm32f0xx_ll_gpio.h
stm32_assert.h stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32_assert.h ../csl/stm32f042/Inc/stm32_assert.h
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp ../nucleo_f042k6/bls_nucleo_f042k6.h
bls_nucleo_f042k6.h
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.h
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.h
stm32f0xx_csl.h stm32f0xx_csl.h
/home/key/github/KED/bsl/nucleo_f042k6/stm32f0xx_csl.h ../nucleo_f042k6/stm32f0xx_csl.h
/home/key/Git/ked/bsl/main.cpp
main.h
/home/key/Git/ked/bsl/main.h
/home/key/Git/ked/bsl/main.h
bls_nucleo_f042k6.h
/home/key/Git/ked/bsl/bls_nucleo_f042k6.h

@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX set(CMAKE_DEPENDS_CHECK_CXX
"/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp" "/home/key/github/KED/bsl/build/CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o" "/home/key/Git/ked/bsl/main.cpp" "/home/key/Git/ked/bsl/build/CMakeFiles/refOvenTest.out.dir/main.cpp.o"
) )
set(CMAKE_CXX_COMPILER_ID "GNU") set(CMAKE_CXX_COMPILER_ID "GNU")
@ -26,7 +26,12 @@ set(CMAKE_TARGET_DEFINITIONS_CXX
# The include file search paths: # The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../."
"../nucleo_f042k6" "../nucleo_f042k6"
"../nucleo_f042k6/../csl/stm32f042/Inc"
"../nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include"
"../nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc"
"../csl/stm32f042/Src/../Inc" "../csl/stm32f042/Src/../Inc"
"../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc" "../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
@ -38,9 +43,10 @@ set(CMAKE_CXX_TARGET_INCLUDE_PATH
# Targets to which this target links. # Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake" "/home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/DependInfo.cmake" "/home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "/home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake"
"/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
) )
# Fortran module output directory. # Fortran module output directory.

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Delete rule output on recipe failure. # Delete rule output on recipe failure.
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -12,15 +12,34 @@
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -37,16 +56,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include CMakeFiles/refOvenTest.out.dir/depend.make include CMakeFiles/refOvenTest.out.dir/depend.make
@ -57,33 +76,34 @@ include CMakeFiles/refOvenTest.out.dir/progress.make
# Include the compile flags for this target's objects. # Include the compile flags for this target's objects.
include CMakeFiles/refOvenTest.out.dir/flags.make include CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/main.cpp.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.cpp CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/main.cpp.o"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o -c /home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/main.cpp.o -c /home/key/Git/ked/bsl/main.cpp
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i: cmake_force CMakeFiles/refOvenTest.out.dir/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/main.cpp.i"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp > CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/Git/ked/bsl/main.cpp > CMakeFiles/refOvenTest.out.dir/main.cpp.i
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s: cmake_force CMakeFiles/refOvenTest.out.dir/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/main.cpp.s"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp -o CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/Git/ked/bsl/main.cpp -o CMakeFiles/refOvenTest.out.dir/main.cpp.s
# Object files for target refOvenTest.out # Object files for target refOvenTest.out
refOvenTest_out_OBJECTS = \ refOvenTest_out_OBJECTS = \
"CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o" "CMakeFiles/refOvenTest.out.dir/main.cpp.o"
# External object files for target refOvenTest.out # External object files for target refOvenTest.out
refOvenTest_out_EXTERNAL_OBJECTS = refOvenTest_out_EXTERNAL_OBJECTS =
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/main.cpp.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make
refOvenTest.out: csl/stm32f042/startup/libStartup.a refOvenTest.out: csl/stm32f042/startup/libStartup.a
refOvenTest.out: csl/stm32f042/Src/libCSources.a refOvenTest.out: nucleo_f042k6/libstmTranslator.a
refOvenTest.out: csl/stm32f042/Src/libCsl_Stm32f0xx.a
refOvenTest.out: csl/stm32f042/Drivers/libDrivers.a refOvenTest.out: csl/stm32f042/Drivers/libDrivers.a
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE) $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE)
arm-none-eabi-size refOvenTest.out arm-none-eabi-size refOvenTest.out
arm-none-eabi-objcopy -O ihex refOvenTest.out refOvenTest.hex arm-none-eabi-objcopy -O ihex refOvenTest.out refOvenTest.hex
@ -99,6 +119,6 @@ CMakeFiles/refOvenTest.out.dir/clean:
.PHONY : CMakeFiles/refOvenTest.out.dir/clean .PHONY : CMakeFiles/refOvenTest.out.dir/clean
CMakeFiles/refOvenTest.out.dir/depend: CMakeFiles/refOvenTest.out.dir/depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl /home/key/github/KED/bsl /home/key/github/KED/bsl/build /home/key/github/KED/bsl/build /home/key/github/KED/bsl/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR) cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked/bsl /home/key/Git/ked/bsl /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/refOvenTest.out.dir/depend .PHONY : CMakeFiles/refOvenTest.out.dir/depend

@ -1,7 +1,7 @@
file(REMOVE_RECURSE file(REMOVE_RECURSE
"CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o" "CMakeFiles/refOvenTest.out.dir/main.cpp.o"
"refOvenTest.out.pdb"
"refOvenTest.out" "refOvenTest.out"
"refOvenTest.out.pdb"
) )
# Per-language clean rules from dependency scanning. # Per-language clean rules from dependency scanning.

@ -1,28 +1,29 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o CMakeFiles/refOvenTest.out.dir/main.cpp.o
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Src/../Inc/stm32_assert.h ../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h ../csl/stm32f042/Inc/stm32f0xx_csl.h
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp ../nucleo_f042k6/bls_nucleo_f042k6.h
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.h /home/key/Git/ked/bsl/main.cpp
/home/key/Git/ked/bsl/main.h

@ -1,28 +1,29 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Inc/stm32_assert.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../csl/stm32f042/Inc/stm32f0xx_csl.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.cpp CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.h
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.h CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.cpp
CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.h

@ -1,10 +1,10 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# compile CXX with /usr/bin/arm-none-eabi-g++ # compile CXX with /usr/bin/arm-none-eabi-g++
CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++1z
CXX_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 CXX_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
CXX_INCLUDES = -I/home/key/github/KED/bsl/nucleo_f042k6 -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc CXX_INCLUDES = -I/home/key/Git/ked/bsl/. -I/home/key/Git/ked/bsl/nucleo_f042k6 -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Inc -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc
CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++17

@ -1 +1 @@
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o -o refOvenTest.out csl/stm32f042/startup/libStartup.a csl/stm32f042/Src/libCSources.a csl/stm32f042/Drivers/libDrivers.a /usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/Git/ked/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/main.cpp.o -o refOvenTest.out csl/stm32f042/startup/libStartup.a nucleo_f042k6/libstmTranslator.a csl/stm32f042/Src/libCsl_Stm32f0xx.a csl/stm32f042/Drivers/libDrivers.a

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,16 +61,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -59,7 +78,7 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
rebuild_cache: rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache .PHONY : rebuild_cache
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
@ -80,14 +99,14 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/CMakeFiles/progress.marks $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build//CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
$(MAKE) -f CMakeFiles/Makefile2 clean $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,12 +116,12 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
@ -115,12 +134,12 @@ depend:
# Build rule for target. # Build rule for target.
refOvenTest.out: cmake_check_build_system refOvenTest.out: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 refOvenTest.out $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 refOvenTest.out
.PHONY : refOvenTest.out .PHONY : refOvenTest.out
# fast build rule for target. # fast build rule for target.
refOvenTest.out/fast: refOvenTest.out/fast:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
.PHONY : refOvenTest.out/fast .PHONY : refOvenTest.out/fast
#============================================================================= #=============================================================================
@ -128,12 +147,12 @@ refOvenTest.out/fast:
# Build rule for target. # Build rule for target.
Drivers: cmake_check_build_system Drivers: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 Drivers $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Drivers
.PHONY : Drivers .PHONY : Drivers
# fast build rule for target. # fast build rule for target.
Drivers/fast: Drivers/fast:
$(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
.PHONY : Drivers/fast .PHONY : Drivers/fast
#============================================================================= #=============================================================================
@ -141,53 +160,66 @@ Drivers/fast:
# Build rule for target. # Build rule for target.
Startup: cmake_check_build_system Startup: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 Startup $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Startup
.PHONY : Startup .PHONY : Startup
# fast build rule for target. # fast build rule for target.
Startup/fast: Startup/fast:
$(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build
.PHONY : Startup/fast .PHONY : Startup/fast
#============================================================================= #=============================================================================
# Target rules for targets named CSources # Target rules for targets named Csl_Stm32f0xx
# Build rule for target. # Build rule for target.
CSources: cmake_check_build_system Csl_Stm32f0xx: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 CSources $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Csl_Stm32f0xx
.PHONY : CSources .PHONY : Csl_Stm32f0xx
# fast build rule for target. # fast build rule for target.
CSources/fast: Csl_Stm32f0xx/fast:
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/build $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build
.PHONY : CSources/fast .PHONY : Csl_Stm32f0xx/fast
nucleo_f042k6/bls_nucleo_f042k6.o: nucleo_f042k6/bls_nucleo_f042k6.cpp.o #=============================================================================
# Target rules for targets named stmTranslator
# Build rule for target.
stmTranslator: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 stmTranslator
.PHONY : stmTranslator
# fast build rule for target.
stmTranslator/fast:
$(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/build
.PHONY : stmTranslator/fast
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.o main.o: main.cpp.o
.PHONY : main.o
# target to build an object file # target to build an object file
nucleo_f042k6/bls_nucleo_f042k6.cpp.o: main.cpp.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.o
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.o .PHONY : main.cpp.o
nucleo_f042k6/bls_nucleo_f042k6.i: nucleo_f042k6/bls_nucleo_f042k6.cpp.i main.i: main.cpp.i
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.i .PHONY : main.i
# target to preprocess a source file # target to preprocess a source file
nucleo_f042k6/bls_nucleo_f042k6.cpp.i: main.cpp.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.i
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.i .PHONY : main.cpp.i
nucleo_f042k6/bls_nucleo_f042k6.s: nucleo_f042k6/bls_nucleo_f042k6.cpp.s main.s: main.cpp.s
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.s .PHONY : main.s
# target to generate assembly for a file # target to generate assembly for a file
nucleo_f042k6/bls_nucleo_f042k6.cpp.s: main.cpp.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.s
.PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.s .PHONY : main.cpp.s
# Help Target # Help Target
help: help:
@ -195,15 +227,16 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache"
@echo "... refOvenTest.out"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... rebuild_cache"
@echo "... Csl_Stm32f0xx"
@echo "... Drivers" @echo "... Drivers"
@echo "... Startup" @echo "... Startup"
@echo "... CSources" @echo "... refOvenTest.out"
@echo "... nucleo_f042k6/bls_nucleo_f042k6.o" @echo "... stmTranslator"
@echo "... nucleo_f042k6/bls_nucleo_f042k6.i" @echo "... main.o"
@echo "... nucleo_f042k6/bls_nucleo_f042k6.s" @echo "... main.i"
@echo "... main.s"
.PHONY : help .PHONY : help

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl # Install script for directory: /home/key/Git/ked/bsl
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,9 +37,15 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY) if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory. # Include the install script for each subdirectory.
include("/home/key/github/KED/bsl/build/csl/cmake_install.cmake") include("/home/key/Git/ked/bsl/build/csl/cmake_install.cmake")
include("/home/key/Git/ked/bsl/build/nucleo_f042k6/cmake_install.cmake")
endif() endif()
@ -51,5 +57,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}") "${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/key/github/KED/bsl/build/${CMAKE_INSTALL_MANIFEST}" file(WRITE "/home/key/Git/ked/bsl/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}") "${CMAKE_INSTALL_MANIFEST_CONTENT}")

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,16 +61,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -59,7 +78,7 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
rebuild_cache: rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache .PHONY : rebuild_cache
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
@ -80,14 +99,14 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/csl/CMakeFiles/progress.marks cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/csl//CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/all cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/clean cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,17 +116,17 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .PHONY : depend
# Help Target # Help Target
@ -116,8 +135,8 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... rebuild_cache"
.PHONY : help .PHONY : help
@ -129,6 +148,6 @@ help:
# No rule that depends on this can have commands that come from listfiles # No rule that depends on this can have commands that come from listfiles
# because they might be regenerated. # because they might be regenerated.
cmake_check_build_system: cmake_check_build_system:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system .PHONY : cmake_check_build_system

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl # Install script for directory: /home/key/Git/ked/bsl/csl
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,9 +37,14 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY) if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory. # Include the install script for each subdirectory.
include("/home/key/github/KED/bsl/build/csl/stm32f042/cmake_install.cmake") include("/home/key/Git/ked/bsl/build/csl/stm32f042/cmake_install.cmake")
endif() endif()

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -120,39 +120,39 @@ stm32f0xx.h
stm32f0xx.h stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
stm32f0xx_ll_exti.h stm32f0xx_ll_exti.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h
stm32_assert.h stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
stm32f0xx_ll_gpio.h stm32f0xx_ll_gpio.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h
stm32f0xx_ll_bus.h stm32f0xx_ll_bus.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h
stm32_assert.h stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
stm32f0xx_ll_pwr.h stm32f0xx_ll_pwr.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h
stm32f0xx_ll_bus.h stm32f0xx_ll_bus.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
stm32f0xx_ll_rcc.h stm32f0xx_ll_rcc.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
stm32_assert.h stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
stm32f0xx_ll_rcc.h stm32f0xx_ll_rcc.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
stm32f0xx_ll_utils.h stm32f0xx_ll_utils.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h
stm32f0xx_ll_system.h stm32f0xx_ll_system.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h
stm32_assert.h stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h

@ -4,11 +4,11 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C set(CMAKE_DEPENDS_CHECK_C
"/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
) )
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Delete rule output on recipe failure. # Delete rule output on recipe failure.
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -12,15 +12,34 @@
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -37,16 +56,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make
@ -59,68 +78,68 @@ include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
# Object files for target Drivers # Object files for target Drivers
Drivers_OBJECTS = \ Drivers_OBJECTS = \
@ -140,9 +159,9 @@ csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir
csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make
csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE) cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target. # Rule to build all files generated by this target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build: csl/stm32f042/Drivers/libDrivers.a csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build: csl/stm32f042/Drivers/libDrivers.a
@ -150,10 +169,10 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build: csl/stm32f042/Drivers/libDri
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean:
cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake cd /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl /home/key/github/KED/bsl/csl/stm32f042/Drivers /home/key/github/KED/bsl/build /home/key/github/KED/bsl/build/csl/stm32f042/Drivers /home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR) cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked/bsl /home/key/Git/ked/bsl/csl/stm32f042/Drivers /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend

@ -4,8 +4,8 @@ file(REMOVE_RECURSE
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
"libDrivers.pdb"
"libDrivers.a" "libDrivers.a"
"libDrivers.pdb"
) )
# Per-language clean rules from dependency scanning. # Per-language clean rules from dependency scanning.

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
@ -13,7 +13,7 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -27,7 +27,7 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -41,7 +41,7 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -54,7 +54,7 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -69,4 +69,4 @@ csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h

@ -1,10 +1,10 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# compile C with /usr/bin/arm-none-eabi-gcc # compile C with /usr/bin/arm-none-eabi-gcc
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
C_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 C_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
C_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc C_INCLUDES = -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections

@ -1,2 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libDrivers.a CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o /usr/bin/arm-none-eabi-ar qc libDrivers.a CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
/usr/bin/arm-none-eabi-ranlib libDrivers.a /usr/bin/arm-none-eabi-ranlib libDrivers.a

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,31 +61,20 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target edit_cache # Special rule for the target edit_cache
edit_cache: edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
@ -78,16 +86,27 @@ edit_cache/fast: edit_cache
.PHONY : edit_cache/fast .PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/progress.marks cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/csl/stm32f042/Drivers//CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/all cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/clean cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,22 +116,22 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .PHONY : depend
# Convenience name for target. # Convenience name for target.
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
# Convenience name for target. # Convenience name for target.
@ -122,7 +141,7 @@ Drivers: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
# fast build rule for target. # fast build rule for target.
Drivers/fast: Drivers/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
.PHONY : Drivers/fast .PHONY : Drivers/fast
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
@ -131,7 +150,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to build an object file # target to build an object file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
@ -140,7 +159,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to preprocess a source file # target to preprocess a source file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
@ -149,7 +168,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to generate assembly for a file # target to generate assembly for a file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
@ -158,7 +177,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to build an object file # target to build an object file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
@ -167,7 +186,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to preprocess a source file # target to preprocess a source file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
@ -176,7 +195,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx
# target to generate assembly for a file # target to generate assembly for a file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
@ -185,7 +204,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to build an object file # target to build an object file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
@ -194,7 +213,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to preprocess a source file # target to preprocess a source file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
@ -203,7 +222,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to generate assembly for a file # target to generate assembly for a file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
@ -212,7 +231,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to build an object file # target to build an object file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
@ -221,7 +240,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to preprocess a source file # target to preprocess a source file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
@ -230,7 +249,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_
# target to generate assembly for a file # target to generate assembly for a file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
@ -239,7 +258,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0x
# target to build an object file # target to build an object file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
@ -248,7 +267,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0x
# target to preprocess a source file # target to preprocess a source file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
@ -257,7 +276,7 @@ STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0x
# target to generate assembly for a file # target to generate assembly for a file
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
# Help Target # Help Target
@ -266,9 +285,9 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... edit_cache"
@echo "... rebuild_cache" @echo "... rebuild_cache"
@echo "... Drivers" @echo "... Drivers"
@echo "... edit_cache"
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o" @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o"
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i" @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i"
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s" @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s"
@ -295,6 +314,6 @@ help:
# No rule that depends on this can have commands that come from listfiles # No rule that depends on this can have commands that come from listfiles
# because they might be regenerated. # because they might be regenerated.
cmake_check_build_system: cmake_check_build_system:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system .PHONY : cmake_check_build_system

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl/stm32f042/Drivers # Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/Drivers
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,3 +37,8 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,16 +61,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -59,7 +78,7 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
rebuild_cache: rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache .PHONY : rebuild_cache
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
@ -80,14 +99,14 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/csl/stm32f042/CMakeFiles/progress.marks cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/csl/stm32f042//CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/all cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/clean cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,17 +116,17 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .PHONY : depend
# Help Target # Help Target
@ -116,8 +135,8 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... rebuild_cache"
.PHONY : help .PHONY : help
@ -129,6 +148,6 @@ help:
# No rule that depends on this can have commands that come from listfiles # No rule that depends on this can have commands that come from listfiles
# because they might be regenerated. # because they might be regenerated.
cmake_check_build_system: cmake_check_build_system:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system .PHONY : cmake_check_build_system

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -1,176 +0,0 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h
-
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
arm_compat.h
-
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h
-
cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h
-
cmsis_ccs.h
-
cmsis_csm.h
-
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h
-
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
stdint.h
-
cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Src/../Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../csl/stm32f042/Src/../Inc/stm32f0xx_ll_gpio.h
stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c
stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c
stm32f0xx.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx.h

@ -1,129 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Include any dependencies generated for this target.
include csl/stm32f042/Src/CMakeFiles/CSources.dir/depend.make
# Include the progress variables for this target.
include csl/stm32f042/Src/CMakeFiles/CSources.dir/progress.make
# Include the compile flags for this target's objects.
include csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/stm32f0xx_csl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_csl.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c > CMakeFiles/CSources.dir/stm32f0xx_csl.c.i
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_csl.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.s
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/stm32f0xx_it.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_it.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c > CMakeFiles/CSources.dir/stm32f0xx_it.c.i
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_it.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c -o CMakeFiles/CSources.dir/stm32f0xx_it.c.s
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/system_stm32f0xx.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/system_stm32f0xx.c.i"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c > CMakeFiles/CSources.dir/system_stm32f0xx.c.i
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/system_stm32f0xx.c.s"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c -o CMakeFiles/CSources.dir/system_stm32f0xx.c.s
# Object files for target CSources
CSources_OBJECTS = \
"CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" \
"CMakeFiles/CSources.dir/stm32f0xx_it.c.o" \
"CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
# External object files for target CSources
CSources_EXTERNAL_OBJECTS =
csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make
csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C static library libCSources.a"
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean_target.cmake
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/CSources.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/build: csl/stm32f042/Src/libCSources.a
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/build
csl/stm32f042/Src/CMakeFiles/CSources.dir/clean:
cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean.cmake
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
csl/stm32f042/Src/CMakeFiles/CSources.dir/depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl /home/key/github/KED/bsl/csl/stm32f042/Src /home/key/github/KED/bsl/build /home/key/github/KED/bsl/build/csl/stm32f042/Src /home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/depend

@ -1,12 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/CSources.dir/stm32f0xx_csl.c.o"
"CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
"CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
"libCSources.pdb"
"libCSources.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/CSources.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,64 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Src/../Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Src/../Inc/stm32_assert.h
../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h
../csl/stm32f042/Src/../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
/home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c

@ -1,64 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Inc/stm32_assert.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Inc/stm32_assert.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Inc/stm32f0xx_csl.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/../Inc/stm32f0xx_it.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/../Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/system_stm32f0xx.c

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# compile C with /usr/bin/arm-none-eabi-gcc
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
C_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
C_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc

@ -1,2 +0,0 @@
/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/stm32f0xx_csl.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o
/usr/bin/arm-none-eabi-ranlib libCSources.a

@ -0,0 +1,176 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h
-
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
arm_compat.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h
-
cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h
-
cmsis_ccs.h
-
cmsis_csm.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h
../csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
stdint.h
-
cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h
../csl/stm32f042/Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../csl/stm32f042/Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../csl/stm32f042/Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../csl/stm32f042/Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../csl/stm32f042/Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../csl/stm32f042/Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../csl/stm32f042/Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../csl/stm32f042/Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../csl/stm32f042/Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../csl/stm32f042/Inc/stm32f0xx_ll_gpio.h
stm32_assert.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_it.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
stm32f0xx_csl.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c
stm32f0xx_csl.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
stm32f0xx_it.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c
stm32f0xx.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx.h

@ -4,9 +4,9 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C set(CMAKE_DEPENDS_CHECK_C
"/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o" "/home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o"
) )
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")
@ -39,7 +39,7 @@ set(CMAKE_C_TARGET_INCLUDE_PATH
# Targets to which this target links. # Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
) )
# Fortran module output directory. # Fortran module output directory.

@ -0,0 +1,148 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
# Include any dependencies generated for this target.
include csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.make
# Include the progress variables for this target.
include csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/progress.make
# Include the compile flags for this target's objects.
include csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/stm32f0xx_csl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c > CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/stm32f0xx_it.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c > CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/system_stm32f0xx.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c > CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c -o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s
# Object files for target Csl_Stm32f0xx
Csl_Stm32f0xx_OBJECTS = \
"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o" \
"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o" \
"CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o"
# External object files for target Csl_Stm32f0xx
Csl_Stm32f0xx_EXTERNAL_OBJECTS =
csl/stm32f042/Src/libCsl_Stm32f0xx.a: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o
csl/stm32f042/Src/libCsl_Stm32f0xx.a: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o
csl/stm32f042/Src/libCsl_Stm32f0xx.a: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o
csl/stm32f042/Src/libCsl_Stm32f0xx.a: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make
csl/stm32f042/Src/libCsl_Stm32f0xx.a: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C static library libCsl_Stm32f0xx.a"
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_target.cmake
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Csl_Stm32f0xx.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build: csl/stm32f042/Src/libCsl_Stm32f0xx.a
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean:
cd /home/key/Git/ked/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean.cmake
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend:
cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked/bsl /home/key/Git/ked/bsl/csl/stm32f042/Src /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build/csl/stm32f042/Src /home/key/Git/ked/bsl/build/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend

@ -0,0 +1,12 @@
file(REMOVE_RECURSE
"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o"
"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o"
"CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o"
"libCsl_Stm32f0xx.a"
"libCsl_Stm32f0xx.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -0,0 +1,64 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_csl.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_csl.h
../csl/stm32f042/Inc/stm32f0xx_it.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
/home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c

@ -0,0 +1,64 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Inc/stm32_assert.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Inc/stm32f0xx_csl.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../csl/stm32f042/Src/stm32f0xx_csl.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Inc/stm32_assert.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Inc/stm32f0xx_csl.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Inc/stm32f0xx_it.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../csl/stm32f042/Src/stm32f0xx_it.c
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../csl/stm32f042/Src/system_stm32f0xx.c

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# compile C with /usr/bin/arm-none-eabi-gcc
C_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
C_INCLUDES = -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections

@ -0,0 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libCsl_Stm32f0xx.a CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o
/usr/bin/arm-none-eabi-ranlib libCsl_Stm32f0xx.a

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,16 +61,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -59,7 +78,7 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
rebuild_cache: rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache .PHONY : rebuild_cache
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
@ -80,14 +99,14 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/progress.marks cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/csl/stm32f042/Src//CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/all cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/clean cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,33 +116,33 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .PHONY : depend
# Convenience name for target. # Convenience name for target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/rule: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/CSources.dir/rule cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/rule .PHONY : csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule
# Convenience name for target. # Convenience name for target.
CSources: csl/stm32f042/Src/CMakeFiles/CSources.dir/rule Csl_Stm32f0xx: csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule
.PHONY : CSources .PHONY : Csl_Stm32f0xx
# fast build rule for target. # fast build rule for target.
CSources/fast: Csl_Stm32f0xx/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/build cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build
.PHONY : CSources/fast .PHONY : Csl_Stm32f0xx/fast
stm32f0xx_csl.o: stm32f0xx_csl.c.o stm32f0xx_csl.o: stm32f0xx_csl.c.o
@ -131,7 +150,7 @@ stm32f0xx_csl.o: stm32f0xx_csl.c.o
# target to build an object file # target to build an object file
stm32f0xx_csl.c.o: stm32f0xx_csl.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o
.PHONY : stm32f0xx_csl.c.o .PHONY : stm32f0xx_csl.c.o
stm32f0xx_csl.i: stm32f0xx_csl.c.i stm32f0xx_csl.i: stm32f0xx_csl.c.i
@ -140,7 +159,7 @@ stm32f0xx_csl.i: stm32f0xx_csl.c.i
# target to preprocess a source file # target to preprocess a source file
stm32f0xx_csl.c.i: stm32f0xx_csl.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i
.PHONY : stm32f0xx_csl.c.i .PHONY : stm32f0xx_csl.c.i
stm32f0xx_csl.s: stm32f0xx_csl.c.s stm32f0xx_csl.s: stm32f0xx_csl.c.s
@ -149,7 +168,7 @@ stm32f0xx_csl.s: stm32f0xx_csl.c.s
# target to generate assembly for a file # target to generate assembly for a file
stm32f0xx_csl.c.s: stm32f0xx_csl.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s
.PHONY : stm32f0xx_csl.c.s .PHONY : stm32f0xx_csl.c.s
stm32f0xx_it.o: stm32f0xx_it.c.o stm32f0xx_it.o: stm32f0xx_it.c.o
@ -158,7 +177,7 @@ stm32f0xx_it.o: stm32f0xx_it.c.o
# target to build an object file # target to build an object file
stm32f0xx_it.c.o: stm32f0xx_it.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o
.PHONY : stm32f0xx_it.c.o .PHONY : stm32f0xx_it.c.o
stm32f0xx_it.i: stm32f0xx_it.c.i stm32f0xx_it.i: stm32f0xx_it.c.i
@ -167,7 +186,7 @@ stm32f0xx_it.i: stm32f0xx_it.c.i
# target to preprocess a source file # target to preprocess a source file
stm32f0xx_it.c.i: stm32f0xx_it.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i
.PHONY : stm32f0xx_it.c.i .PHONY : stm32f0xx_it.c.i
stm32f0xx_it.s: stm32f0xx_it.c.s stm32f0xx_it.s: stm32f0xx_it.c.s
@ -176,7 +195,7 @@ stm32f0xx_it.s: stm32f0xx_it.c.s
# target to generate assembly for a file # target to generate assembly for a file
stm32f0xx_it.c.s: stm32f0xx_it.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s
.PHONY : stm32f0xx_it.c.s .PHONY : stm32f0xx_it.c.s
system_stm32f0xx.o: system_stm32f0xx.c.o system_stm32f0xx.o: system_stm32f0xx.c.o
@ -185,7 +204,7 @@ system_stm32f0xx.o: system_stm32f0xx.c.o
# target to build an object file # target to build an object file
system_stm32f0xx.c.o: system_stm32f0xx.c.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o
.PHONY : system_stm32f0xx.c.o .PHONY : system_stm32f0xx.c.o
system_stm32f0xx.i: system_stm32f0xx.c.i system_stm32f0xx.i: system_stm32f0xx.c.i
@ -194,7 +213,7 @@ system_stm32f0xx.i: system_stm32f0xx.c.i
# target to preprocess a source file # target to preprocess a source file
system_stm32f0xx.c.i: system_stm32f0xx.c.i:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i
.PHONY : system_stm32f0xx.c.i .PHONY : system_stm32f0xx.c.i
system_stm32f0xx.s: system_stm32f0xx.c.s system_stm32f0xx.s: system_stm32f0xx.c.s
@ -203,7 +222,7 @@ system_stm32f0xx.s: system_stm32f0xx.c.s
# target to generate assembly for a file # target to generate assembly for a file
system_stm32f0xx.c.s: system_stm32f0xx.c.s:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s
.PHONY : system_stm32f0xx.c.s .PHONY : system_stm32f0xx.c.s
# Help Target # Help Target
@ -212,9 +231,9 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache"
@echo "... CSources"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... rebuild_cache"
@echo "... Csl_Stm32f0xx"
@echo "... stm32f0xx_csl.o" @echo "... stm32f0xx_csl.o"
@echo "... stm32f0xx_csl.i" @echo "... stm32f0xx_csl.i"
@echo "... stm32f0xx_csl.s" @echo "... stm32f0xx_csl.s"
@ -235,6 +254,6 @@ help:
# No rule that depends on this can have commands that come from listfiles # No rule that depends on this can have commands that come from listfiles
# because they might be regenerated. # because they might be regenerated.
cmake_check_build_system: cmake_check_build_system:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system .PHONY : cmake_check_build_system

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl/stm32f042/Src # Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/Src
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,3 +37,8 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl/stm32f042 # Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,11 +37,16 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY) if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory. # Include the install script for each subdirectory.
include("/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/cmake_install.cmake") include("/home/key/Git/ked/bsl/build/csl/stm32f042/Drivers/cmake_install.cmake")
include("/home/key/github/KED/bsl/build/csl/stm32f042/startup/cmake_install.cmake") include("/home/key/Git/ked/bsl/build/csl/stm32f042/startup/cmake_install.cmake")
include("/home/key/github/KED/bsl/build/csl/stm32f042/Src/cmake_install.cmake") include("/home/key/Git/ked/bsl/build/csl/stm32f042/Src/cmake_install.cmake")
endif() endif()

@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

@ -6,5 +6,5 @@
#IncludeRegexTransform: #IncludeRegexTransform:
/home/key/github/KED/bsl/csl/stm32f042/startup/startup_stm32f042x6.s /home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s

@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_ASM set(CMAKE_DEPENDS_CHECK_ASM
"/home/key/github/KED/bsl/csl/stm32f042/startup/startup_stm32f042x6.s" "/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" "/home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s" "/home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
) )
set(CMAKE_ASM_COMPILER_ID "GNU") set(CMAKE_ASM_COMPILER_ID "GNU")

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Delete rule output on recipe failure. # Delete rule output on recipe failure.
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -12,15 +12,34 @@
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -37,16 +56,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make include csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make
@ -59,8 +78,8 @@ include csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make
csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make
csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../csl/stm32f042/startup/startup_stm32f042x6.s csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../csl/stm32f042/startup/startup_stm32f042x6.s
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
cd /home/key/github/KED/bsl/build/csl/stm32f042/startup && /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/Startup.dir/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/csl/stm32f042/startup/startup_stm32f042x6.s cd /home/key/Git/ked/bsl/build/csl/stm32f042/startup && /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/Startup.dir/startup_stm32f042x6.s.o -c /home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s
# Object files for target Startup # Object files for target Startup
Startup_OBJECTS = \ Startup_OBJECTS = \
@ -72,9 +91,9 @@ Startup_EXTERNAL_OBJECTS =
csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make
csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt csl/stm32f042/startup/libStartup.a: csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libStartup.a" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libStartup.a"
cd /home/key/github/KED/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean_target.cmake cd /home/key/Git/ked/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean_target.cmake
cd /home/key/github/KED/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Startup.dir/link.txt --verbose=$(VERBOSE) cd /home/key/Git/ked/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Startup.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target. # Rule to build all files generated by this target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/build: csl/stm32f042/startup/libStartup.a csl/stm32f042/startup/CMakeFiles/Startup.dir/build: csl/stm32f042/startup/libStartup.a
@ -82,10 +101,10 @@ csl/stm32f042/startup/CMakeFiles/Startup.dir/build: csl/stm32f042/startup/libSta
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/build .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/build
csl/stm32f042/startup/CMakeFiles/Startup.dir/clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean:
cd /home/key/github/KED/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean.cmake cd /home/key/Git/ked/bsl/build/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean.cmake
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/clean .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
csl/stm32f042/startup/CMakeFiles/Startup.dir/depend: csl/stm32f042/startup/CMakeFiles/Startup.dir/depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl /home/key/github/KED/bsl/csl/stm32f042/startup /home/key/github/KED/bsl/build /home/key/github/KED/bsl/build/csl/stm32f042/startup /home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake --color=$(COLOR) cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked/bsl /home/key/Git/ked/bsl/csl/stm32f042/startup /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build/csl/stm32f042/startup /home/key/Git/ked/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/depend .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/depend

@ -1,7 +1,7 @@
file(REMOVE_RECURSE file(REMOVE_RECURSE
"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" "CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
"libStartup.pdb"
"libStartup.a" "libStartup.a"
"libStartup.pdb"
) )
# Per-language clean rules from dependency scanning. # Per-language clean rules from dependency scanning.

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
/home/key/github/KED/bsl/csl/stm32f042/startup/startup_stm32f042x6.s /home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../csl/stm32f042/startup/startup_stm32f042x6.s csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../csl/stm32f042/startup/startup_stm32f042x6.s

@ -1,10 +1,10 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# compile ASM with /usr/bin/arm-none-eabi-gcc # compile ASM with /usr/bin/arm-none-eabi-gcc
ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -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 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
ASM_INCLUDES = ASM_INCLUDES =
ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections

@ -1,2 +1,2 @@
/usr/bin/arm-none-eabi-ar cr libStartup.a CMakeFiles/Startup.dir/startup_stm32f042x6.s.o /usr/bin/arm-none-eabi-ar cr libStartup.a CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
/usr/bin/arm-none-eabi-ranlib libStartup.a /usr/bin/arm-none-eabi-ranlib libStartup.a

@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make. # Default target executed when no arguments are given to make.
default_target: all default_target: all
@ -17,15 +17,34 @@ default_target: all
.SUFFIXES: .SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove. # Disable VCS-based implicit rules.
SUFFIXES = % : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list .SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands. # Command-line flag to silence nested $(MAKE).
$(VERBOSE).SILENT: $(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date. # A target that is always out of date.
cmake_force: cmake_force:
@ -42,16 +61,16 @@ SHELL = /bin/sh
CMAKE_COMMAND = /usr/bin/cmake CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file. # The command to remove a file.
RM = /usr/bin/cmake -E remove -f RM = /usr/bin/cmake -E rm -f
# Escaping for special characters. # Escaping for special characters.
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -59,7 +78,7 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
rebuild_cache: rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache .PHONY : rebuild_cache
# Special rule for the target rebuild_cache # Special rule for the target rebuild_cache
@ -80,14 +99,14 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/progress.marks cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/csl/stm32f042/startup//CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/all cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
clean: clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/clean cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,22 +116,22 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/preinstall
.PHONY : preinstall .PHONY : preinstall
# Prepare targets for installation. # Prepare targets for installation.
preinstall/fast: preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/preinstall cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .PHONY : depend
# Convenience name for target. # Convenience name for target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/rule: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/rule cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# Convenience name for target. # Convenience name for target.
@ -122,7 +141,7 @@ Startup: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# fast build rule for target. # fast build rule for target.
Startup/fast: Startup/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build
.PHONY : Startup/fast .PHONY : Startup/fast
startup_stm32f042x6.o: startup_stm32f042x6.s.o startup_stm32f042x6.o: startup_stm32f042x6.s.o
@ -131,7 +150,7 @@ startup_stm32f042x6.o: startup_stm32f042x6.s.o
# target to build an object file # target to build an object file
startup_stm32f042x6.s.o: startup_stm32f042x6.s.o:
cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
.PHONY : startup_stm32f042x6.s.o .PHONY : startup_stm32f042x6.s.o
# Help Target # Help Target
@ -140,9 +159,9 @@ help:
@echo "... all (the default if no target is provided)" @echo "... all (the default if no target is provided)"
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... edit_cache"
@echo "... rebuild_cache" @echo "... rebuild_cache"
@echo "... Startup" @echo "... Startup"
@echo "... edit_cache"
@echo "... startup_stm32f042x6.o" @echo "... startup_stm32f042x6.o"
.PHONY : help .PHONY : help
@ -155,6 +174,6 @@ help:
# No rule that depends on this can have commands that come from listfiles # No rule that depends on this can have commands that come from listfiles
# because they might be regenerated. # because they might be regenerated.
cmake_check_build_system: cmake_check_build_system:
cd /home/key/github/KED/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system .PHONY : cmake_check_build_system

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl/stm32f042/startup # Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/startup
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,3 +37,8 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/bsl/build")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -0,0 +1,168 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h
-
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
arm_compat.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h
-
cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h
-
cmsis_ccs.h
-
cmsis_csm.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h
../csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h
-
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
stdint.h
-
cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h
../csl/stm32f042/Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../csl/stm32f042/Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../csl/stm32f042/Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../csl/stm32f042/Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../csl/stm32f042/Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../csl/stm32f042/Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../csl/stm32f042/Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../csl/stm32f042/Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../csl/stm32f042/Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../csl/stm32f042/Inc/stm32f0xx_ll_gpio.h
stm32_assert.h
../csl/stm32f042/Inc/stm32_assert.h
/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp
bls_nucleo_f042k6.h
/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h
/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h
stm32f0xx_csl.h
/home/key/Git/ked/bsl/nucleo_f042k6/stm32f0xx_csl.h

@ -0,0 +1,41 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp" "/home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"DATA_CACHE_ENABLE=0"
"HSE_STARTUP_TIMEOUT=100"
"HSE_VALUE=8000000"
"HSI_VALUE=8000000"
"INSTRUCTION_CACHE_ENABLE=0"
"LSE_STARTUP_TIMEOUT=5000"
"LSE_VALUE=32768"
"LSI_VALUE=40000"
"PREFETCH_ENABLE=1"
"STM32F042x6"
"USE_FULL_LL_DRIVER"
"VDD_VALUE=3300"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../nucleo_f042k6"
"../nucleo_f042k6/../csl/stm32f042/Inc"
"../nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include"
"../nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -0,0 +1,118 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
# Include any dependencies generated for this target.
include nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.make
# Include the progress variables for this target.
include nucleo_f042k6/CMakeFiles/stmTranslator.dir/progress.make
# Include the compile flags for this target's objects.
include nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o"
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o -c /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i"
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp > CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s"
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp -o CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s
# Object files for target stmTranslator
stmTranslator_OBJECTS = \
"CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o"
# External object files for target stmTranslator
stmTranslator_EXTERNAL_OBJECTS =
nucleo_f042k6/libstmTranslator.a: nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o
nucleo_f042k6/libstmTranslator.a: nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make
nucleo_f042k6/libstmTranslator.a: nucleo_f042k6/CMakeFiles/stmTranslator.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libstmTranslator.a"
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && $(CMAKE_COMMAND) -P CMakeFiles/stmTranslator.dir/cmake_clean_target.cmake
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/stmTranslator.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
nucleo_f042k6/CMakeFiles/stmTranslator.dir/build: nucleo_f042k6/libstmTranslator.a
.PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/build
nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean:
cd /home/key/Git/ked/bsl/build/nucleo_f042k6 && $(CMAKE_COMMAND) -P CMakeFiles/stmTranslator.dir/cmake_clean.cmake
.PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean
nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend:
cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked/bsl /home/key/Git/ked/bsl/nucleo_f042k6 /home/key/Git/ked/bsl/build /home/key/Git/ked/bsl/build/nucleo_f042k6 /home/key/Git/ked/bsl/build/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend

@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o"
"libstmTranslator.a"
"libstmTranslator.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/stmTranslator.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -0,0 +1,28 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../csl/stm32f042/Inc/stm32_assert.h
../csl/stm32f042/Inc/stm32f0xx_csl.h
/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp
/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h

@ -0,0 +1,28 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Inc/stm32_assert.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Inc/stm32f0xx_csl.h
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.cpp
nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.h

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# compile CXX with /usr/bin/arm-none-eabi-g++
CXX_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
CXX_INCLUDES = -I/home/key/Git/ked/bsl/nucleo_f042k6 -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Inc -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc
CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++17

@ -0,0 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libstmTranslator.a CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o
/usr/bin/arm-none-eabi-ranlib libstmTranslator.a

@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 15
CMAKE_PROGRESS_2 = 16

@ -0,0 +1,199 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/Git/ked/bsl
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/Git/ked/bsl/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# The main all target
all: cmake_check_build_system
cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles /home/key/Git/ked/bsl/build/nucleo_f042k6//CMakeFiles/progress.marks
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/bsl/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule
.PHONY : nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule
# Convenience name for target.
stmTranslator: nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule
.PHONY : stmTranslator
# fast build rule for target.
stmTranslator/fast:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/build
.PHONY : stmTranslator/fast
bls_nucleo_f042k6.o: bls_nucleo_f042k6.cpp.o
.PHONY : bls_nucleo_f042k6.o
# target to build an object file
bls_nucleo_f042k6.cpp.o:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o
.PHONY : bls_nucleo_f042k6.cpp.o
bls_nucleo_f042k6.i: bls_nucleo_f042k6.cpp.i
.PHONY : bls_nucleo_f042k6.i
# target to preprocess a source file
bls_nucleo_f042k6.cpp.i:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i
.PHONY : bls_nucleo_f042k6.cpp.i
bls_nucleo_f042k6.s: bls_nucleo_f042k6.cpp.s
.PHONY : bls_nucleo_f042k6.s
# target to generate assembly for a file
bls_nucleo_f042k6.cpp.s:
cd /home/key/Git/ked/bsl/build && $(MAKE) $(MAKESILENT) -f nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s
.PHONY : bls_nucleo_f042k6.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... rebuild_cache"
@echo "... stmTranslator"
@echo "... bls_nucleo_f042k6.o"
@echo "... bls_nucleo_f042k6.i"
@echo "... bls_nucleo_f042k6.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/key/Git/ked/bsl/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -0,0 +1,44 @@
# Install script for directory: /home/key/Git/ked/bsl/nucleo_f042k6
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump")
endif()

Binary file not shown.

@ -1,4 +1,4 @@
project(CSources) #project(CSources)
set (C_INCLUDES set (C_INCLUDES
# ${CPP_ENTRY_HEADER} # ${CPP_ENTRY_HEADER}

@ -0,0 +1,7 @@
#include"main.h"
int main(void)
{
cppHook();
return 1;
}

@ -0,0 +1,14 @@
#ifndef MAIN_H
#define MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
#include "bls_nucleo_f042k6.h"
#ifdef __cplusplus
} // closing brace for extern "C"
#endif
#endif /* MAIN_H */

@ -0,0 +1,11 @@
add_library(stmTranslator bls_nucleo_f042k6.cpp)
target_compile_options(stmTranslator PRIVATE ${C_FLAGS})
target_compile_definitions(stmTranslator PRIVATE ${C_DEFS})
target_include_directories(stmTranslator PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
../csl/stm32f042/Inc
../csl/stm32f042/Drivers/CMSIS/Include
../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc
)
add_library(sub::translator ALIAS stmTranslator)

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

Loading…
Cancel
Save