Now one level higher and can pass everything with libraries now time to separate the head Cmake and the Executable generation

interrupts
atomega 4 years ago
parent ca7c065df7
commit f6900baaf1

@ -15,16 +15,17 @@ set(CMAKE_EXE_LINKER_FLAGS "--specs=nosys.specs")
#PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used. #PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used.
#################################################################################################### ####################################################################################################
project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors. project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors.
set(CPP_ENTRY_HEADER ${CMAKE_SOURCE_DIR}/nucleo_f042k6)
set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD 17)
set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_PROCESSOR arm) set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_CROSSCOMPILING TRUE) set(CMAKE_CROSSCOMPILING TRUE)
set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ?? set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ??
set(CSL_DIR csl/stm32f042)
#################################################################################################### ####################################################################################################
#VARIABLES : defined by user #VARIABLES : defined by user
#################################################################################################### ####################################################################################################
set(LINKER startup/STM32F042K6Tx_FLASH.ld) set(LINKER ${CSL_DIR}/startup/STM32F042K6Tx_FLASH.ld)
set(CPU_MCU "-mcpu=cortex-m0") set(CPU_MCU "-mcpu=cortex-m0")
set(C_FUNC c_functions) set(C_FUNC c_functions)
set(CPP_FUNC cpp_functions) set(CPP_FUNC cpp_functions)
@ -33,11 +34,6 @@ set(EXECUTABLE ${PROJECT_NAME}.out)
#################################################################################################### ####################################################################################################
#SOURCES #SOURCES
#################################################################################################### ####################################################################################################
set (C_INCLUDES
Inc
Drivers/STM32F0xx_HAL_Driver/Inc
Drivers/CMSIS/Device/ST/STM32F0xx/Include
Drivers/CMSIS/Include)
# For flags please check https://manned.org/arm-none-eabi-gcc/34fd6095 # For flags please check https://manned.org/arm-none-eabi-gcc/34fd6095
set(C_FLAGS set(C_FLAGS
@ -64,7 +60,7 @@ set(C_DEFS
-DDATA_CACHE_ENABLE=0) -DDATA_CACHE_ENABLE=0)
set (CPP_SOURCES cppSrc/transfer.cpp) set (CPP_SOURCES cppSrc/transfer.cpp)
set (CPP_INCLUDES cppSrc)#${C_INCLUDES} ) set (CPP_INCLUDES nucleo_f042k6)#${C_INCLUDES} )
set (CPP_FLAGS ${C_FLAGS}) set (CPP_FLAGS ${C_FLAGS})
set (CPP_DEFS ${C_DEFS}) set (CPP_DEFS ${C_DEFS})
@ -78,39 +74,20 @@ set(LINKER_FLAGS
#################################################################################################### ####################################################################################################
#SUBDIRECTORIES #SUBDIRECTORIES
#################################################################################################### ####################################################################################################
add_subdirectory(Drivers) add_subdirectory(csl)
add_subdirectory(startup)
add_subdirectory(Src)
####################################################################################################
#LIBRARIES
####################################################################################################
add_library(${CPP_FUNC} ${CPP_SOURCES})
target_compile_options(${CPP_FUNC} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${CPP_FUNC} PRIVATE ${CPP_DEFS})
target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES})
#Please note that this configuration can define in which order the libraries will be compiled an linked
#with eachother.
####################################################################################################
#LINKING LIBRARIES
####################################################################################################
target_link_libraries(${CPP_FUNC} sub::cSources)
#################################################################################################### ####################################################################################################
#EXECUTABLE #EXECUTABLE
#################################################################################################### ####################################################################################################
add_executable(${EXECUTABLE} Src/main.c) add_executable(${EXECUTABLE} nucleo_f042k6/bls_nucleo_f042k6.cpp)
target_compile_options(${EXECUTABLE} PRIVATE ${C_FLAGS}) target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${EXECUTABLE} PRIVATE ${C_DEFS}) target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS})
target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES}) target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES})
#################################################################################################### ####################################################################################################
#LINKING EXECUTEABLE #LINKING EXECUTEABLE
#################################################################################################### ####################################################################################################
target_link_libraries(${EXECUTABLE} sub::startup sub::cSources ${CPP_FUNC})#${C_FUNC} ${CPP_FUNC}) target_link_libraries(${EXECUTABLE} sub::startup sub::cSources)#${C_FUNC} ${CPP_FUNC})
target_link_options(${EXECUTABLE} PRIVATE target_link_options(${EXECUTABLE} PRIVATE
${CPU_MCU} ${CPU_MCU}
-mthumb -mthumb
@ -136,8 +113,8 @@ add_custom_command(TARGET ${EXECUTABLE}
#CUSTOM Comments from dev. #CUSTOM Comments from dev.
#################################################################################################### ####################################################################################################
# Link For hheader dependency : https://stackoverflow.com/questions/11216408/cmake-dependencies-headers-between-apps-libraries-in-same-project # Link For hheader dependency : https://stackoverflow.com/questions/11216408/cmake-dependencies-headers-between-apps-libraries-in-same-project
#This is one possible trick to handle the assenbly compiling. # This is one possible trick to handle the assenbly compiling.
#We can't use arm-non-eabi-as because it can onaly hande macros. # We can't use arm-non-eabi-as because it can onaly hande macros.
#So this bizzare Variable makes shure that whne the asembly compiling is called the -x assembler-with-cpp flag is passed # So this bizzare Variable makes shure that whne the asembly compiling is called the -x assembler-with-cpp flag is passed
#target_compile_options(${EXECUTABLE} PRIVATE # target_compile_options(${EXECUTABLE} PRIVATE
# $<$<COMPILE_LANGUAGE:ASM>:-x assembler-with-cpp ${ASM_FLAGS}>) # $<$<COMPILE_LANGUAGE:ASM>:-x assembler-with-cpp ${ASM_FLAGS}>)

@ -1,5 +1,5 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /home/key/github/KED/bsl/csl/stm32f042/build # For build in directory: /home/key/github/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.
@ -215,7 +215,7 @@ 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/csl/stm32f042/build/Src CSources_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042/Src
//Dependencies for the target //Dependencies for the target
CSources_LIB_DEPENDS:STATIC=general;sub::drivers; CSources_LIB_DEPENDS:STATIC=general;sub::drivers;
@ -224,22 +224,34 @@ CSources_LIB_DEPENDS:STATIC=general;sub::drivers;
CSources_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/Src CSources_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/Src
//Value Computed by CMake //Value Computed by CMake
Drivers_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build/Drivers Csl_Stm32f0xx_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl/stm32f042
//Value Computed by CMake
Csl_Stm32f0xx_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042
//Value Computed by CMake
Csl_Stm_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build/csl
//Value Computed by CMake
Csl_Stm_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl
//Value Computed by CMake
Drivers_BINARY_DIR:STATIC=/home/key/github/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/github/KED/bsl/csl/stm32f042/Drivers
//Value Computed by CMake //Value Computed by CMake
Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build/startup Startup_BINARY_DIR:STATIC=/home/key/github/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/github/KED/bsl/csl/stm32f042/startup
//Value Computed by CMake //Value Computed by CMake
refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/build
//Value Computed by CMake //Value Computed by CMake
refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042 refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl
######################## ########################
@ -264,7 +276,7 @@ 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/csl/stm32f042/build CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/github/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
@ -333,7 +345,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/csl/stm32f042 CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/github/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
@ -353,7 +365,7 @@ 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=4 CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=6
//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

@ -2,8 +2,8 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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)

@ -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/csl/stm32f042/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.o" The C compiler identification is GNU, found in "/home/key/github/KED/bsl/build/CMakeFiles/3.13.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,33 +29,33 @@ 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/csl/stm32f042/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.o" The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.o"
Determining if the C compiler works passed with the following output: Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e18b8/fast" Run Build Command:"/usr/bin/make" "cmTC_7d686/fast"
/usr/bin/make -f CMakeFiles/cmTC_e18b8.dir/build.make CMakeFiles/cmTC_e18b8.dir/build /usr/bin/make -f CMakeFiles/cmTC_7d686.dir/build.make CMakeFiles/cmTC_7d686.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o Building C object CMakeFiles/cmTC_7d686.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCCompiler.c /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_e18b8 Linking C executable cmTC_7d686
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e18b8.dir/link.txt --verbose=1 /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_e18b8.dir/testCCompiler.c.o -o cmTC_e18b8 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast" Run Build Command:"/usr/bin/make" "cmTC_d21f9/fast"
/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build /usr/bin/make -f CMakeFiles/cmTC_d21f9.dir/build.make CMakeFiles/cmTC_d21f9.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o Building C object CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/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
Linking C executable cmTC_5dc60 Linking C executable cmTC_d21f9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d21f9.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60 /usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -o cmTC_d21f9
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/7.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
@ -67,24 +67,24 @@ Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
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/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/
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/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9'
/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/ccGQgJ1i.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_5dc60 /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_5dc60.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/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
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9'
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
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/csl/stm32f042/build/CMakeFiles/CMakeTmp] ignore line: [Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast"] ignore line: [Run Build Command:"/usr/bin/make" "cmTC_d21f9/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build] ignore line: [/usr/bin/make -f CMakeFiles/cmTC_d21f9.dir/build.make CMakeFiles/cmTC_d21f9.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o] ignore line: [Building C object CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] 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: [Linking C executable cmTC_5dc60] ignore line: [Linking C executable cmTC_d21f9]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1] ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d21f9.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60 ] ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_d21f9.dir/CMakeCCompilerABI.c.o -o cmTC_d21f9 ]
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/7.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]
@ -96,13 +96,13 @@ Parsed C implicit link information from above output:
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ]
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/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: [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/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60'] ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_d21f9']
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/ccGQgJ1i.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_5dc60 /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_5dc60.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/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]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccGQgJ1i.res] ==> ignore arg [-plugin-opt=-fresolution=/tmp/cc9leys6.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 +110,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_5dc60] ==> ignore arg [cmTC_d21f9] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.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/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.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/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o] ==> ignore arg [CMakeFiles/cmTC_d21f9.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]
@ -138,17 +138,17 @@ Parsed C implicit link information from above output:
Detecting C [-std=c11] compiler features compiled with the following output: Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8aec9/fast" Run Build Command:"/usr/bin/make" "cmTC_e7393/fast"
/usr/bin/make -f CMakeFiles/cmTC_8aec9.dir/build.make CMakeFiles/cmTC_8aec9.dir/build /usr/bin/make -f CMakeFiles/cmTC_e7393.dir/build.make CMakeFiles/cmTC_e7393.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o Building C object CMakeFiles/cmTC_e7393.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c /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_8aec9 Linking C executable cmTC_e7393
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aec9.dir/link.txt --verbose=1 /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_8aec9.dir/feature_tests.c.o -o cmTC_8aec9 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -158,17 +158,17 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting C [-std=c99] compiler features compiled with the following output: Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f0416/fast" Run Build Command:"/usr/bin/make" "cmTC_8e31e/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0416.dir/build.make CMakeFiles/cmTC_f0416.dir/build /usr/bin/make -f CMakeFiles/cmTC_8e31e.dir/build.make CMakeFiles/cmTC_8e31e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0416.dir/feature_tests.c.o Building C object CMakeFiles/cmTC_8e31e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_f0416.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c /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_f0416 Linking C executable cmTC_8e31e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0416.dir/link.txt --verbose=1 /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_f0416.dir/feature_tests.c.o -o cmTC_f0416 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -178,17 +178,17 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting C [-std=c90] compiler features compiled with the following output: Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a0c0f/fast" Run Build Command:"/usr/bin/make" "cmTC_a31e3/fast"
/usr/bin/make -f CMakeFiles/cmTC_a0c0f.dir/build.make CMakeFiles/cmTC_a0c0f.dir/build /usr/bin/make -f CMakeFiles/cmTC_a31e3.dir/build.make CMakeFiles/cmTC_a31e3.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o Building C object CMakeFiles/cmTC_a31e3.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c /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_a0c0f Linking C executable cmTC_a31e3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0c0f.dir/link.txt --verbose=1 /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_a0c0f.dir/feature_tests.c.o -o cmTC_a0c0f /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes Feature record: C_FEATURE:1c_function_prototypes
@ -196,30 +196,30 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Feature record: C_FEATURE:0c_static_assert Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output: Determining if the CXX compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b7a22/fast" Run Build Command:"/usr/bin/make" "cmTC_08264/fast"
/usr/bin/make -f CMakeFiles/cmTC_b7a22.dir/build.make CMakeFiles/cmTC_b7a22.dir/build /usr/bin/make -f CMakeFiles/cmTC_08264.dir/build.make CMakeFiles/cmTC_08264.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o Building CXX object CMakeFiles/cmTC_08264.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx /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_b7a22 Linking CXX executable cmTC_08264
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7a22.dir/link.txt --verbose=1 /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_b7a22.dir/testCXXCompiler.cxx.o -o cmTC_b7a22 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast" Run Build Command:"/usr/bin/make" "cmTC_90d43/fast"
/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build /usr/bin/make -f CMakeFiles/cmTC_90d43.dir/build.make CMakeFiles/cmTC_90d43.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o Building CXX object CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/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
Linking CXX executable cmTC_c85b7 Linking CXX executable cmTC_90d43
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90d43.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7 /usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_90d43
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/7.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
@ -231,24 +231,24 @@ Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
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/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/
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/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43'
/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/cc6lRxDQ.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_c85b7 /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_c85b7.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/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
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7' COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43'
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Leaving directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
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/csl/stm32f042/build/CMakeFiles/CMakeTmp] ignore line: [Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp]
ignore line: [] ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast"] ignore line: [Run Build Command:"/usr/bin/make" "cmTC_90d43/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build] ignore line: [/usr/bin/make -f CMakeFiles/cmTC_90d43.dir/build.make CMakeFiles/cmTC_90d43.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o] ignore line: [Building CXX object CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] 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: [Linking CXX executable cmTC_c85b7] ignore line: [Linking CXX executable cmTC_90d43]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1] ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90d43.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7 ] ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_90d43.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_90d43 ]
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/7.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]
@ -260,13 +260,13 @@ Parsed CXX implicit link information from above output:
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ]
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/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: [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/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7'] ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_90d43']
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/cc6lRxDQ.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_c85b7 /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_c85b7.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/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]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc6lRxDQ.res] ==> ignore arg [-plugin-opt=-fresolution=/tmp/cce2KC3G.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 +274,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_c85b7] ==> ignore arg [cmTC_90d43] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.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/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.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/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [CMakeFiles/cmTC_90d43.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
@ -304,17 +304,17 @@ Parsed CXX implicit link information from above output:
Detecting CXX [-std=c++1z] compiler features compiled with the following output: Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_d6131/fast" Run Build Command:"/usr/bin/make" "cmTC_4b163/fast"
/usr/bin/make -f CMakeFiles/cmTC_d6131.dir/build.make CMakeFiles/cmTC_d6131.dir/build /usr/bin/make -f CMakeFiles/cmTC_4b163.dir/build.make CMakeFiles/cmTC_4b163.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o Building CXX object CMakeFiles/cmTC_4b163.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx /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_d6131 Linking CXX executable cmTC_4b163
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6131.dir/link.txt --verbose=1 /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_d6131.dir/feature_tests.cxx.o -o cmTC_d6131 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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_aggregate_default_initializers
@ -377,17 +377,17 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++14] compiler features compiled with the following output: Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_30022/fast" Run Build Command:"/usr/bin/make" "cmTC_fac64/fast"
/usr/bin/make -f CMakeFiles/cmTC_30022.dir/build.make CMakeFiles/cmTC_30022.dir/build /usr/bin/make -f CMakeFiles/cmTC_fac64.dir/build.make CMakeFiles/cmTC_fac64.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o Building CXX object CMakeFiles/cmTC_fac64.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx /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_30022 Linking CXX executable cmTC_fac64
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30022.dir/link.txt --verbose=1 /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_30022.dir/feature_tests.cxx.o -o cmTC_30022 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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_aggregate_default_initializers
@ -450,17 +450,17 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++11] compiler features compiled with the following output: Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7b64d/fast" Run Build Command:"/usr/bin/make" "cmTC_481ab/fast"
/usr/bin/make -f CMakeFiles/cmTC_7b64d.dir/build.make CMakeFiles/cmTC_7b64d.dir/build /usr/bin/make -f CMakeFiles/cmTC_481ab.dir/build.make CMakeFiles/cmTC_481ab.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o Building CXX object CMakeFiles/cmTC_481ab.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx /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_7b64d Linking CXX executable cmTC_481ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7b64d.dir/link.txt --verbose=1 /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_7b64d.dir/feature_tests.cxx.o -o cmTC_7b64d /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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_aggregate_default_initializers
@ -523,17 +523,17 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++98] compiler features compiled with the following output: Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp Change Dir: /home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_54b40/fast" Run Build Command:"/usr/bin/make" "cmTC_61008/fast"
/usr/bin/make -f CMakeFiles/cmTC_54b40.dir/build.make CMakeFiles/cmTC_54b40.dir/build /usr/bin/make -f CMakeFiles/cmTC_61008.dir/build.make CMakeFiles/cmTC_61008.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' make[1]: Entering directory '/home/key/github/KED/bsl/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o Building CXX object CMakeFiles/cmTC_61008.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx /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_54b40 Linking CXX executable cmTC_61008
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54b40.dir/link.txt --verbose=1 /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_54b40.dir/feature_tests.cxx.o -o cmTC_54b40 /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/csl/stm32f042/build/CMakeFiles/CMakeTmp' 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_aggregate_default_initializers

@ -8,15 +8,17 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
set(CMAKE_MAKEFILE_DEPENDS set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt" "CMakeCache.txt"
"../CMakeLists.txt" "../CMakeLists.txt"
"../Drivers/CMakeLists.txt"
"../Src/CMakeLists.txt"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/3.13.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
"CMakeFiles/3.13.4/CMakeSystem.cmake" "CMakeFiles/3.13.4/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c" "CMakeFiles/feature_tests.c"
"CMakeFiles/feature_tests.cxx" "CMakeFiles/feature_tests.cxx"
"../startup/CMakeLists.txt" "../csl/CMakeLists.txt"
"../csl/stm32f042/CMakeLists.txt"
"../csl/stm32f042/Drivers/CMakeLists.txt"
"../csl/stm32f042/Src/CMakeLists.txt"
"../csl/stm32f042/startup/CMakeLists.txt"
"/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in" "/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake" "/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in" "/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in"
@ -121,15 +123,17 @@ set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake"
"Drivers/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/CMakeFiles/CMakeDirectoryInformation.cmake"
"startup/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake"
"Src/CMakeFiles/CMakeDirectoryInformation.cmake" "csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake"
"csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake"
) )
# Dependency information for all targets: # Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
"startup/CMakeFiles/Startup.dir/DependInfo.cmake" "csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"Src/CMakeFiles/CSources.dir/DependInfo.cmake" "csl/stm32f042/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
) )

@ -0,0 +1,322 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# The main recursive all target
all:
.PHONY : all
# The main recursive preinstall target
preinstall:
.PHONY : preinstall
# The main recursive clean target
clean:
.PHONY : clean
#=============================================================================
# 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
#=============================================================================
# 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/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
.PHONY : 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/github/KED/bsl/build/CMakeFiles 14
$(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
# 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.
clean: CMakeFiles/refOvenTest.out.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory csl
# Convenience name for "all" pass in the directory.
csl/all: csl/stm32f042/all
.PHONY : csl/all
# Convenience name for "clean" pass in the directory.
csl/clean: csl/stm32f042/clean
.PHONY : csl/clean
# Convenience name for "preinstall" pass in the directory.
csl/preinstall: csl/stm32f042/preinstall
.PHONY : csl/preinstall
#=============================================================================
# Directory level rules for directory csl/stm32f042
# Convenience name for "all" pass in the directory.
csl/stm32f042/all: csl/stm32f042/Drivers/all
csl/stm32f042/all: csl/stm32f042/startup/all
csl/stm32f042/all: csl/stm32f042/Src/all
.PHONY : csl/stm32f042/all
# Convenience name for "clean" pass in the directory.
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/startup/preinstall
csl/stm32f042/preinstall: csl/stm32f042/Src/preinstall
.PHONY : csl/stm32f042/preinstall
#=============================================================================
# Directory level rules for directory csl/stm32f042/Drivers
# Convenience name for "all" pass in the directory.
csl/stm32f042/Drivers/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
.PHONY : csl/stm32f042/Drivers/all
# Convenience name for "clean" pass in the directory.
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:
.PHONY : csl/stm32f042/Drivers/preinstall
#=============================================================================
# Target rules for target csl/stm32f042/Drivers/CMakeFiles/Drivers.dir
# 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.
all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
.PHONY : 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/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.
Drivers: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers
# clean rule for target.
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.
clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory csl/stm32f042/startup
# Convenience name for "all" pass in the directory.
csl/stm32f042/startup/all: csl/stm32f042/startup/CMakeFiles/Startup.dir/all
.PHONY : csl/stm32f042/startup/all
# Convenience name for "clean" pass in the directory.
csl/stm32f042/startup/clean: csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
.PHONY : csl/stm32f042/startup/clean
# Convenience name for "preinstall" pass in the directory.
csl/stm32f042/startup/preinstall:
.PHONY : csl/stm32f042/startup/preinstall
#=============================================================================
# Target rules for target csl/stm32f042/startup/CMakeFiles/Startup.dir
# All Build rule for target.
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) -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"
.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.
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
$(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# Convenience name for target.
Startup: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
.PHONY : Startup
# clean rule for target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/clean:
$(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make 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
# Convenience name for "all" pass in the directory.
csl/stm32f042/Src/all: csl/stm32f042/Src/CMakeFiles/CSources.dir/all
.PHONY : csl/stm32f042/Src/all
# Convenience name for "clean" pass in the directory.
csl/stm32f042/Src/clean: csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
.PHONY : csl/stm32f042/Src/clean
# Convenience name for "preinstall" pass in the directory.
csl/stm32f042/Src/preinstall:
.PHONY : csl/stm32f042/Src/preinstall
#=============================================================================
# Target rules for target csl/stm32f042/Src/CMakeFiles/CSources.dir
# All Build rule for target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/all: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/depend
$(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.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"
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/all
# Include target in all.
all: csl/stm32f042/Src/CMakeFiles/CSources.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
csl/stm32f042/Src/CMakeFiles/CSources.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 10
$(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/CSources.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/rule
# Convenience name for target.
CSources: csl/stm32f042/Src/CMakeFiles/CSources.dir/rule
.PHONY : CSources
# clean rule for target.
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: csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
.PHONY : clean
#=============================================================================
# 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:
$(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,16 @@
/home/key/github/KED/bsl/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir
/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir
/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/edit_cache.dir

@ -0,0 +1,168 @@
#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
/home/key/github/KED/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp
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
/home/key/github/KED/bsl/nucleo_f042k6/stm32f0xx_csl.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/csl/stm32f042/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" "/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"
) )
set(CMAKE_CXX_COMPILER_ID "GNU") set(CMAKE_CXX_COMPILER_ID "GNU")
@ -26,22 +26,21 @@ 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
"../cppSrc" "../nucleo_f042k6"
"../Src/../Inc" "../csl/stm32f042/Src/../Inc"
"../Src/../cppSrc" "../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc" "../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Src/../Drivers/CMSIS/Include"
"../Src/../Drivers/CMSIS/Include" "../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Drivers/CMSIS/Include"
"../Drivers/CMSIS/Include" "../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
) )
# 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/csl/stm32f042/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake" "/home/key/github/KED/bsl/build/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake" "/home/key/github/KED/bsl/build/csl/stm32f042/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
) )
# Fortran module output directory. # Fortran module output directory.

@ -43,10 +43,10 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/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 +57,33 @@ 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/cppSrc/transfer.cpp.o: 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/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../nucleo_f042k6/bls_nucleo_f042k6.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" @$(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"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp /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
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i: cmake_force CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to 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/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp > CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.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
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s: cmake_force CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s" @$(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"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.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
# Object files for target refOvenTest.out # Object files for target refOvenTest.out
refOvenTest_out_OBJECTS = \ refOvenTest_out_OBJECTS = \
"CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" "CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.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/cppSrc/transfer.cpp.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make
refOvenTest.out: startup/libStartup.a refOvenTest.out: csl/stm32f042/startup/libStartup.a
refOvenTest.out: Src/libCSources.a refOvenTest.out: csl/stm32f042/Src/libCSources.a
refOvenTest.out: 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/csl/stm32f042/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/github/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 +99,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/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR) 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)
.PHONY : CMakeFiles/refOvenTest.out.dir/depend .PHONY : CMakeFiles/refOvenTest.out.dir/depend

@ -1,5 +1,5 @@
file(REMOVE_RECURSE file(REMOVE_RECURSE
"CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" "CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o"
"refOvenTest.out.pdb" "refOvenTest.out.pdb"
"refOvenTest.out" "refOvenTest.out"
) )

@ -0,0 +1,28 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.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/nucleo_f042k6/bls_nucleo_f042k6.cpp
/home/key/github/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.13
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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/bls_nucleo_f042k6.cpp.o: ../csl/stm32f042/Src/../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/nucleo_f042k6/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.13
# 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_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

@ -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/cppSrc/transfer.cpp.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a Drivers/libDrivers.a /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

@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -80,9 +80,9 @@ 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/csl/stm32f042/build/CMakeFiles /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/progress.marks $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles /home/key/github/KED/bsl/build/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all $(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target
@ -133,7 +133,7 @@ Drivers: cmake_check_build_system
# fast build rule for target. # fast build rule for target.
Drivers/fast: Drivers/fast:
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build $(MAKE) -f csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
.PHONY : Drivers/fast .PHONY : Drivers/fast
#============================================================================= #=============================================================================
@ -146,7 +146,7 @@ Startup: cmake_check_build_system
# fast build rule for target. # fast build rule for target.
Startup/fast: Startup/fast:
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build $(MAKE) -f csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make csl/stm32f042/startup/CMakeFiles/Startup.dir/build
.PHONY : Startup/fast .PHONY : Startup/fast
#============================================================================= #=============================================================================
@ -159,35 +159,35 @@ CSources: cmake_check_build_system
# fast build rule for target. # fast build rule for target.
CSources/fast: CSources/fast:
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/build
.PHONY : CSources/fast .PHONY : CSources/fast
cppSrc/transfer.o: cppSrc/transfer.cpp.o nucleo_f042k6/bls_nucleo_f042k6.o: nucleo_f042k6/bls_nucleo_f042k6.cpp.o
.PHONY : cppSrc/transfer.o .PHONY : nucleo_f042k6/bls_nucleo_f042k6.o
# target to build an object file # target to build an object file
cppSrc/transfer.cpp.o: nucleo_f042k6/bls_nucleo_f042k6.cpp.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.o
.PHONY : cppSrc/transfer.cpp.o .PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.o
cppSrc/transfer.i: cppSrc/transfer.cpp.i nucleo_f042k6/bls_nucleo_f042k6.i: nucleo_f042k6/bls_nucleo_f042k6.cpp.i
.PHONY : cppSrc/transfer.i .PHONY : nucleo_f042k6/bls_nucleo_f042k6.i
# target to preprocess a source file # target to preprocess a source file
cppSrc/transfer.cpp.i: nucleo_f042k6/bls_nucleo_f042k6.cpp.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.i
.PHONY : cppSrc/transfer.cpp.i .PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.i
cppSrc/transfer.s: cppSrc/transfer.cpp.s nucleo_f042k6/bls_nucleo_f042k6.s: nucleo_f042k6/bls_nucleo_f042k6.cpp.s
.PHONY : cppSrc/transfer.s .PHONY : nucleo_f042k6/bls_nucleo_f042k6.s
# target to generate assembly for a file # target to generate assembly for a file
cppSrc/transfer.cpp.s: nucleo_f042k6/bls_nucleo_f042k6.cpp.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/nucleo_f042k6/bls_nucleo_f042k6.cpp.s
.PHONY : cppSrc/transfer.cpp.s .PHONY : nucleo_f042k6/bls_nucleo_f042k6.cpp.s
# Help Target # Help Target
help: help:
@ -201,9 +201,9 @@ help:
@echo "... Drivers" @echo "... Drivers"
@echo "... Startup" @echo "... Startup"
@echo "... CSources" @echo "... CSources"
@echo "... cppSrc/transfer.o" @echo "... nucleo_f042k6/bls_nucleo_f042k6.o"
@echo "... cppSrc/transfer.i" @echo "... nucleo_f042k6/bls_nucleo_f042k6.i"
@echo "... cppSrc/transfer.s" @echo "... nucleo_f042k6/bls_nucleo_f042k6.s"
.PHONY : help .PHONY : help

@ -1,4 +1,4 @@
# Install script for directory: /home/key/github/KED/bsl/csl/stm32f042 # Install script for directory: /home/key/github/KED/bsl
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -39,9 +39,7 @@ 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/csl/stm32f042/build/Drivers/cmake_install.cmake") include("/home/key/github/KED/bsl/build/csl/cmake_install.cmake")
include("/home/key/github/KED/bsl/csl/stm32f042/build/startup/cmake_install.cmake")
include("/home/key/github/KED/bsl/csl/stm32f042/build/Src/cmake_install.cmake")
endif() endif()
@ -53,5 +51,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/csl/stm32f042/build/${CMAKE_INSTALL_MANIFEST}" file(WRITE "/home/key/github/KED/bsl/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}") "${CMAKE_INSTALL_MANIFEST_CONTENT}")

@ -2,8 +2,8 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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)

@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
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/cmakeLowLayer CMAKE_SOURCE_DIR = /home/key/github/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/cmakeLowLayer/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -80,14 +80,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/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks 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/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/all cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/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/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/clean cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,43 +97,19 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/preinstall
.PHONY : preinstall/fast .PHONY : preinstall/fast
# clear depends # clear depends
depend: depend:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/github/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.
startup/CMakeFiles/Startup.dir/rule:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/CMakeFiles/Startup.dir/rule
.PHONY : startup/CMakeFiles/Startup.dir/rule
# Convenience name for target.
Startup: startup/CMakeFiles/Startup.dir/rule
.PHONY : Startup
# fast build rule for target.
Startup/fast:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build
.PHONY : Startup/fast
startup_stm32f042x6.o: startup_stm32f042x6.s.o
.PHONY : startup_stm32f042x6.o
# target to build an object file
startup_stm32f042x6.s.o:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
.PHONY : startup_stm32f042x6.s.o
# Help Target # Help Target
help: help:
@echo "The following are some of the valid targets for this Makefile:" @echo "The following are some of the valid targets for this Makefile:"
@ -141,9 +117,7 @@ help:
@echo "... clean" @echo "... clean"
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache" @echo "... rebuild_cache"
@echo "... Startup"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... startup_stm32f042x6.o"
.PHONY : help .PHONY : help
@ -155,6 +129,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/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/github/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/cmakeLowLayer/Drivers # Install script for directory: /home/key/github/KED/bsl/csl
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@ -37,3 +37,9 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/key/github/KED/bsl/build/csl/stm32f042/cmake_install.cmake")
endif()

@ -2,8 +2,8 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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)

@ -2,8 +2,8 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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)

@ -0,0 +1,158 @@
#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_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
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
stm32f0xx_ll_exti.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h
stm32_assert.h
/home/key/github/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
stm32f0xx_ll_gpio.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h
stm32f0xx_ll_bus.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h
stm32_assert.h
/home/key/github/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
stm32f0xx_ll_pwr.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h
stm32f0xx_ll_bus.h
/home/key/github/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
stm32f0xx_ll_rcc.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
stm32_assert.h
/home/key/github/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
stm32f0xx_ll_rcc.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
stm32f0xx_ll_utils.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h
stm32f0xx_ll_system.h
/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h
stm32_assert.h
/home/key/github/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/csl/stm32f042/build/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_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/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/github/KED/bsl/csl/stm32f042/build/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_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/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/github/KED/bsl/csl/stm32f042/build/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_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/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/github/KED/bsl/csl/stm32f042/build/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_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/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.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"
) )
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")
@ -30,9 +30,9 @@ set(CMAKE_TARGET_DEFINITIONS_C
# The include file search paths: # The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH set(CMAKE_C_TARGET_INCLUDE_PATH
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include" "../csl/stm32f042/Drivers/CMSIS/Include"
"../Drivers/STM32F0xx_HAL_Driver/Inc" "../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc"
) )
# Targets to which this target links. # Targets to which this target links.

@ -43,84 +43,84 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include Drivers/CMakeFiles/Drivers.dir/depend.make include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make
# Include the progress variables for this target. # Include the progress variables for this target.
include Drivers/CMakeFiles/Drivers.dir/progress.make include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/progress.make
# Include the compile flags for this target's objects. # Include the compile flags for this target's objects.
include Drivers/CMakeFiles/Drivers.dir/flags.make include csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: 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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object 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/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"
cd /home/key/github/KED/bsl/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: 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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object 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/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"
cd /home/key/github/KED/bsl/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: 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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object 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/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"
cd /home/key/github/KED/bsl/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: 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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object 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/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"
cd /home/key/github/KED/bsl/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: 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
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object 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/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"
cd /home/key/github/KED/bsl/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
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/csl/stm32f042/build/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/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
# Object files for target Drivers # Object files for target Drivers
Drivers_OBJECTS = \ Drivers_OBJECTS = \
@ -133,27 +133,27 @@ Drivers_OBJECTS = \
# External object files for target Drivers # External object files for target Drivers
Drivers_EXTERNAL_OBJECTS = Drivers_EXTERNAL_OBJECTS =
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
Drivers/libDrivers.a: 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
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/build.make csl/stm32f042/Drivers/libDrivers.a: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make
Drivers/libDrivers.a: 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/csl/stm32f042/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/github/KED/bsl/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake
cd /home/key/github/KED/bsl/csl/stm32f042/build/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE) cd /home/key/github/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.
Drivers/CMakeFiles/Drivers.dir/build: Drivers/libDrivers.a csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build: csl/stm32f042/Drivers/libDrivers.a
.PHONY : Drivers/CMakeFiles/Drivers.dir/build .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build
Drivers/CMakeFiles/Drivers.dir/clean: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean:
cd /home/key/github/KED/bsl/csl/stm32f042/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake cd /home/key/github/KED/bsl/build/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake
.PHONY : Drivers/CMakeFiles/Drivers.dir/clean .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean
Drivers/CMakeFiles/Drivers.dir/depend: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042/Drivers /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build/Drivers /home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR) 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)
.PHONY : Drivers/CMakeFiles/Drivers.dir/depend .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend

@ -0,0 +1,72 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
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/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_exti.h
/home/key/github/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/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_gpio.h
/home/key/github/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/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_pwr.h
/home/key/github/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/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_rcc.h
/home/key/github/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/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_rcc.h
../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.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

@ -0,0 +1,72 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
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/system_stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
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_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
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_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
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_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
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_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
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

@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
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/cmakeLowLayer CMAKE_SOURCE_DIR = /home/key/github/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/cmakeLowLayer/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -80,14 +80,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/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks 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/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/all cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/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/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/clean cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,32 +97,32 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/github/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.
Drivers/CMakeFiles/Drivers.dir/rule: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/CMakeFiles/Drivers.dir/rule cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers/CMakeFiles/Drivers.dir/rule .PHONY : csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
# Convenience name for target. # Convenience name for target.
Drivers: Drivers/CMakeFiles/Drivers.dir/rule Drivers: csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers .PHONY : Drivers
# fast build rule for target. # fast build rule for target.
Drivers/fast: Drivers/fast:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build cd /home/key/github/KED/bsl/build && $(MAKE) -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 +131,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +140,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +149,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +158,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +167,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +176,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +185,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +194,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +203,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +212,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +221,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +230,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +239,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +248,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.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 +257,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/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/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
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s .PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
# Help Target # Help Target
@ -295,6 +295,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/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/github/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

@ -0,0 +1,134 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# 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:
# 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
#=============================================================================
# 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
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/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/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/preinstall
.PHONY : preinstall/fast
# clear depends
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
.PHONY : depend
# 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 "... rebuild_cache"
@echo "... edit_cache"
.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/github/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,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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,176 @@
#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

@ -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/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" "/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/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_it.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/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/system_stm32f0xx.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"
) )
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")
@ -28,19 +28,18 @@ set(CMAKE_TARGET_DEFINITIONS_C
# The include file search paths: # The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH set(CMAKE_C_TARGET_INCLUDE_PATH
"../Src/../Inc" "../csl/stm32f042/Src/../Inc"
"../Src/../cppSrc" "../csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc" "../csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Src/../Drivers/CMSIS/Include"
"../Src/../Drivers/CMSIS/Include" "../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../csl/stm32f042/Drivers/CMSIS/Include"
"../Drivers/CMSIS/Include" "../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
) )
# 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/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "/home/key/github/KED/bsl/build/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
) )
# Fortran module output directory. # Fortran module output directory.

@ -43,58 +43,58 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include Src/CMakeFiles/CSources.dir/depend.make include csl/stm32f042/Src/CMakeFiles/CSources.dir/depend.make
# Include the progress variables for this target. # Include the progress variables for this target.
include Src/CMakeFiles/CSources.dir/progress.make include csl/stm32f042/Src/CMakeFiles/CSources.dir/progress.make
# Include the compile flags for this target's objects. # Include the compile flags for this target's objects.
include Src/CMakeFiles/CSources.dir/flags.make include csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: Src/CMakeFiles/CSources.dir/flags.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/stm32f0xx_csl.c 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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i: cmake_force 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" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s: cmake_force 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" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: Src/CMakeFiles/CSources.dir/flags.make csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c 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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i: cmake_force 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" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s: cmake_force 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" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: Src/CMakeFiles/CSources.dir/flags.make csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: csl/stm32f042/Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c 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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i: cmake_force 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" @$(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/csl/stm32f042/build/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 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
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force 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" @$(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/csl/stm32f042/build/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 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 # Object files for target CSources
CSources_OBJECTS = \ CSources_OBJECTS = \
@ -105,25 +105,25 @@ CSources_OBJECTS = \
# External object files for target CSources # External object files for target CSources
CSources_EXTERNAL_OBJECTS = CSources_EXTERNAL_OBJECTS =
Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/libCSources.a: csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make
Src/libCSources.a: Src/CMakeFiles/CSources.dir/link.txt 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/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C static library libCSources.a" @$(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/csl/stm32f042/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean_target.cmake 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/csl/stm32f042/build/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/CSources.dir/link.txt --verbose=$(VERBOSE) 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. # Rule to build all files generated by this target.
Src/CMakeFiles/CSources.dir/build: Src/libCSources.a csl/stm32f042/Src/CMakeFiles/CSources.dir/build: csl/stm32f042/Src/libCSources.a
.PHONY : Src/CMakeFiles/CSources.dir/build .PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/build
Src/CMakeFiles/CSources.dir/clean: csl/stm32f042/Src/CMakeFiles/CSources.dir/clean:
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean.cmake cd /home/key/github/KED/bsl/build/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean.cmake
.PHONY : Src/CMakeFiles/CSources.dir/clean .PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/clean
Src/CMakeFiles/CSources.dir/depend: csl/stm32f042/Src/CMakeFiles/CSources.dir/depend:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042/Src /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build/Src /home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake --color=$(COLOR) 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 : Src/CMakeFiles/CSources.dir/depend .PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/depend

@ -0,0 +1,64 @@
# 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

@ -0,0 +1,64 @@
# 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

@ -6,5 +6,5 @@ C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=al
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/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -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 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

@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -80,14 +80,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/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles /home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/progress.marks 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/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 Src/all cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/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/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 Src/clean cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,32 +97,32 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/csl/stm32f042/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/github/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.
Src/CMakeFiles/CSources.dir/rule: csl/stm32f042/Src/CMakeFiles/CSources.dir/rule:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 Src/CMakeFiles/CSources.dir/rule cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/Src/CMakeFiles/CSources.dir/rule
.PHONY : Src/CMakeFiles/CSources.dir/rule .PHONY : csl/stm32f042/Src/CMakeFiles/CSources.dir/rule
# Convenience name for target. # Convenience name for target.
CSources: Src/CMakeFiles/CSources.dir/rule CSources: csl/stm32f042/Src/CMakeFiles/CSources.dir/rule
.PHONY : CSources .PHONY : CSources
# fast build rule for target. # fast build rule for target.
CSources/fast: CSources/fast:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build cd /home/key/github/KED/bsl/build && $(MAKE) -f csl/stm32f042/Src/CMakeFiles/CSources.dir/build.make csl/stm32f042/Src/CMakeFiles/CSources.dir/build
.PHONY : CSources/fast .PHONY : CSources/fast
stm32f0xx_csl.o: stm32f0xx_csl.c.o stm32f0xx_csl.o: stm32f0xx_csl.c.o
@ -131,7 +131,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +140,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +149,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +158,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +167,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +176,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +185,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +194,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.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 +203,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/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/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
.PHONY : system_stm32f0xx.c.s .PHONY : system_stm32f0xx.c.s
# Help Target # Help Target
@ -235,6 +235,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/csl/stm32f042/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/github/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/cmakeLowLayer/Src # Install script for directory: /home/key/github/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,3 +37,11 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE") set(CMAKE_CROSSCOMPILING "TRUE")
endif() endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/key/github/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/github/KED/bsl/build/csl/stm32f042/Src/cmake_install.cmake")
endif()

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/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})

@ -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/csl/stm32f042/build/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" "/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"
) )
set(CMAKE_ASM_COMPILER_ID "GNU") set(CMAKE_ASM_COMPILER_ID "GNU")

@ -0,0 +1,91 @@
# 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/startup/CMakeFiles/Startup.dir/depend.make
# Include the progress variables for this target.
include csl/stm32f042/startup/CMakeFiles/Startup.dir/progress.make
# Include the compile flags for this target's objects.
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/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"
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
# Object files for target Startup
Startup_OBJECTS = \
"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
# External object files for target Startup
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/build.make
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"
cd /home/key/github/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)
# Rule to build all files generated by this target.
csl/stm32f042/startup/CMakeFiles/Startup.dir/build: csl/stm32f042/startup/libStartup.a
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/build
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
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/clean
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)
.PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/depend

@ -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.13
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/github/KED/bsl/csl/stm32f042/startup/startup_stm32f042x6.s

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

@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
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/csl/stm32f042 CMAKE_SOURCE_DIR = /home/key/github/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/csl/stm32f042/build CMAKE_BINARY_DIR = /home/key/github/KED/bsl/build
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@ -80,14 +80,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/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles /home/key/github/KED/bsl/csl/stm32f042/build/startup/CMakeFiles/progress.marks 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/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 startup/all cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/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/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 startup/clean cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/clean
.PHONY : clean .PHONY : clean
# The main clean target # The main clean target
@ -97,32 +97,32 @@ clean/fast: clean
# Prepare targets for installation. # Prepare targets for installation.
preinstall: all preinstall: all
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall cd /home/key/github/KED/bsl/build && $(MAKE) -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/csl/stm32f042/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 cd /home/key/github/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.
startup/CMakeFiles/Startup.dir/rule: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f CMakeFiles/Makefile2 startup/CMakeFiles/Startup.dir/rule cd /home/key/github/KED/bsl/build && $(MAKE) -f CMakeFiles/Makefile2 csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
.PHONY : startup/CMakeFiles/Startup.dir/rule .PHONY : csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
# Convenience name for target. # Convenience name for target.
Startup: startup/CMakeFiles/Startup.dir/rule Startup: csl/stm32f042/startup/CMakeFiles/Startup.dir/rule
.PHONY : Startup .PHONY : Startup
# fast build rule for target. # fast build rule for target.
Startup/fast: Startup/fast:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build cd /home/key/github/KED/bsl/build && $(MAKE) -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 +131,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/csl/stm32f042/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/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
.PHONY : startup_stm32f042x6.s.o .PHONY : startup_stm32f042x6.s.o
# Help Target # Help Target
@ -155,6 +155,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/csl/stm32f042/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 cd /home/key/github/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,21 +0,0 @@
project(Drivers)
set(P_SOURCES
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c)
add_library(${PROJECT_NAME} ${P_SOURCES})
target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS})
target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS})
target_include_directories(${PROJECT_NAME}
PUBLIC
CMSIS/Device/ST/STM32F0xx/Include
CMSIS/Include
STM32F0xx_HAL_Driver/Inc
)
#To create an alias to be used on the main CMAKE.
add_library(sub::drivers ALIAS ${PROJECT_NAME})

@ -1,98 +0,0 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : main.h
* @brief : Header for main.c file.
* This file contains the common defines of the application.
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/* USER CODE END Header */
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __MAIN_H
#define __MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "stm32f0xx_ll_crs.h"
#include "stm32f0xx_ll_rcc.h"
#include "stm32f0xx_ll_bus.h"
#include "stm32f0xx_ll_system.h"
#include "stm32f0xx_ll_exti.h"
#include "stm32f0xx_ll_cortex.h"
#include "stm32f0xx_ll_utils.h"
#include "stm32f0xx_ll_pwr.h"
#include "stm32f0xx_ll_dma.h"
#include "stm32f0xx_ll_gpio.h"
#if defined(USE_FULL_ASSERT)
#include "stm32_assert.h"
#endif /* USE_FULL_ASSERT */
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
/* Exported types ------------------------------------------------------------*/
/* USER CODE BEGIN ET */
/* USER CODE END ET */
/* Exported constants --------------------------------------------------------*/
/* USER CODE BEGIN EC */
/* USER CODE END EC */
/* Exported macro ------------------------------------------------------------*/
/* USER CODE BEGIN EM */
int cHook();
/* USER CODE END EM */
/* Exported functions prototypes ---------------------------------------------*/
void Error_Handler(void);
/* USER CODE BEGIN EFP */
/* USER CODE END EFP */
/* Private defines -----------------------------------------------------------*/
#define LED_G_Pin LL_GPIO_PIN_3
#define LED_G_GPIO_Port GPIOB
#ifndef NVIC_PRIORITYGROUP_0
#define NVIC_PRIORITYGROUP_0 ((uint32_t)0x00000007) /*!< 0 bit for pre-emption priority,
4 bits for subpriority */
#define NVIC_PRIORITYGROUP_1 ((uint32_t)0x00000006) /*!< 1 bit for pre-emption priority,
3 bits for subpriority */
#define NVIC_PRIORITYGROUP_2 ((uint32_t)0x00000005) /*!< 2 bits for pre-emption priority,
2 bits for subpriority */
#define NVIC_PRIORITYGROUP_3 ((uint32_t)0x00000004) /*!< 3 bits for pre-emption priority,
1 bit for subpriority */
#define NVIC_PRIORITYGROUP_4 ((uint32_t)0x00000003) /*!< 4 bits for pre-emption priority,
0 bit for subpriority */
#endif
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
#ifdef __cplusplus
}
#endif
#endif /* __MAIN_H */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

@ -1,24 +0,0 @@
project(CSources)
set (C_INCLUDES
../Inc
../cppSrc
../Drivers/STM32F0xx_HAL_Driver/Inc
../Drivers/CMSIS/Device/ST/STM32F0xx/Include
../Drivers/CMSIS/Include)
set(C_SOURCES
main.c
stm32f0xx_it.c
system_stm32f0xx.c)
#add_subdirectory(Drivers)
add_library(${PROJECT_NAME} ${C_SOURCES})
target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS})
target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS})
target_include_directories(${PROJECT_NAME} PUBLIC ${C_INCLUDES})
target_link_libraries(${PROJECT_NAME} sub::drivers)
#To create an alias to be used on the main CMAKE.
add_library(sub::cSources ALIAS ${PROJECT_NAME})

@ -1,204 +0,0 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : main.c
* @brief : Main program body
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "transfer.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */
/* USER CODE END PTD */
/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
/* USER CODE END PD */
/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */
/* USER CODE END PM */
/* Private variables ---------------------------------------------------------*/
/* USER CODE BEGIN PV */
/* USER CODE END PV */
/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
static void MX_GPIO_Init(void);
/* USER CODE BEGIN PFP */
/* USER CODE END PFP */
/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */
int cHook()
{
return 1;
}
/* USER CODE END 0 */
/**
* @brief The application entry point.
* @retval int
*/
int main(void)
{
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
LL_APB1_GRP2_EnableClock(LL_APB1_GRP2_PERIPH_SYSCFG);
LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR);
/* System interrupt init*/
/* SysTick_IRQn interrupt configuration */
NVIC_SetPriority(SysTick_IRQn, 3);
/* USER CODE BEGIN Init */
/* USER CODE END Init */
SystemClock_Config();
/* USER CODE BEGIN SysInit */
/* USER CODE END SysInit */
/* Initialize all configured peripherals */
MX_GPIO_Init();
/* USER CODE BEGIN 2 */
/* USER CODE END 2 */
cHook();
cppHook();
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
LL_GPIO_TogglePin(LED_G_GPIO_Port,LED_G_Pin);
LL_mDelay(100);
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}
/**
* @brief System Clock Configuration
* @retval None
*/
void SystemClock_Config(void)
{
LL_FLASH_SetLatency(LL_FLASH_LATENCY_0);
while(LL_FLASH_GetLatency() != LL_FLASH_LATENCY_0)
{
}
LL_RCC_HSI_Enable();
/* Wait till HSI is ready */
while(LL_RCC_HSI_IsReady() != 1)
{
}
LL_RCC_HSI_SetCalibTrimming(16);
LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1);
LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_1);
LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_HSI);
/* Wait till System clock is ready */
while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_HSI)
{
}
LL_Init1msTick(8000000);
LL_SetSystemCoreClock(8000000);
}
/**
* @brief GPIO Initialization Function
* @param None
* @retval None
*/
static void MX_GPIO_Init(void)
{
LL_GPIO_InitTypeDef GPIO_InitStruct = {0};
/* GPIO Ports Clock Enable */
LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_GPIOB);
/**/
LL_GPIO_ResetOutputPin(LED_G_GPIO_Port, LED_G_Pin);
/**/
GPIO_InitStruct.Pin = LED_G_Pin;
GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
LL_GPIO_Init(LED_G_GPIO_Port, &GPIO_InitStruct);
}
/* USER CODE BEGIN 4 */
/* USER CODE END 4 */
/**
* @brief This function is executed in case of error occurrence.
* @retval None
*/
void Error_Handler(void)
{
/* USER CODE BEGIN Error_Handler_Debug */
/* User can add his own implementation to report the HAL error return state */
__disable_irq();
while (1)
{
}
/* USER CODE END Error_Handler_Debug */
}
#ifdef USE_FULL_ASSERT
/**
* @brief Reports the name of the source file and the source line number
* where the assert_param error has occurred.
* @param file: pointer to the source file name
* @param line: assert_param error line source number
* @retval None
*/
void assert_failed(uint8_t *file, uint32_t line)
{
/* USER CODE BEGIN 6 */
/* User can add his own implementation to report the file name and line number,
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
/* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

@ -1,398 +0,0 @@
# This is the CMakeCache file.
# For build in directory: /home/key/github/KED/bsl/cmakeLowLayer/build
# It was generated by CMake: /usr/bin/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 want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/arm-none-eabi-ar
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib
//Flags used by the ASM compiler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/arm-none-eabi-ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/arm-none-eabi-nm
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/arm-none-eabi-objdump
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=refOvenTest
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-ranlib
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
CSources_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/Src
//Dependencies for the target
CSources_LIB_DEPENDS:STATIC=general;sub::drivers;
//Value Computed by CMake
CSources_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/Src
//Value Computed by CMake
Drivers_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers
//Value Computed by CMake
Drivers_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/Drivers
//Value Computed by CMake
Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/startup
//Value Computed by CMake
Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/startup
//Dependencies for the target
cpp_functions_LIB_DEPENDS:STATIC=general;sub::cSources;
//Value Computed by CMake
refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build
//Value Computed by CMake
refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/github/KED/bsl/cmakeLowLayer/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=13
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=4
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/github/KED/bsl/cmakeLowLayer
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.13
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1

@ -1,595 +0,0 @@
The system is: Linux - 5.8.0-0.bpo.2-amd64 - x86_64
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
arm-none-eabi-gcc (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907]
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/arm-none-eabi-gcc
Build flags:
Id flags: -c
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o"
The C compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.o"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/arm-none-eabi-g++
Build flags:
Id flags: -c
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o"
The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.o"
Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_ffbd4/fast"
/usr/bin/make -f CMakeFiles/cmTC_ffbd4.dir/build.make CMakeFiles/cmTC_ffbd4.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_ffbd4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ffbd4.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o -o cmTC_ffbd4
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_acbaf/fast"
/usr/bin/make -f CMakeFiles/cmTC_acbaf.dir/build.make CMakeFiles/cmTC_acbaf.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_acbaf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acbaf.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -o cmTC_acbaf
Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/usr/bin/arm-none-eabi-gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper
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
Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
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/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_acbaf'
/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/ccIXnsH3.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_acbaf /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_acbaf.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
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_acbaf'
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_acbaf/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_acbaf.dir/build.make CMakeFiles/cmTC_acbaf.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_acbaf]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acbaf.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -o cmTC_acbaf ]
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: [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_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper]
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: [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: [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: [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: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_acbaf']
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/ccIXnsH3.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_acbaf /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_acbaf.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]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccIXnsH3.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_acbaf] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [--end-group] ==> ignore
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.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/7.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib]
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 fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f756e/fast"
/usr/bin/make -f CMakeFiles/cmTC_f756e.dir/build.make CMakeFiles/cmTC_f756e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f756e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_f756e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_f756e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f756e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_f756e.dir/feature_tests.c.o -o cmTC_f756e
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_36c60/fast"
/usr/bin/make -f CMakeFiles/cmTC_36c60.dir/build.make CMakeFiles/cmTC_36c60.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_36c60.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_36c60.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_36c60
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36c60.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_36c60.dir/feature_tests.c.o -o cmTC_36c60
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7ffd1/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ffd1.dir/build.make CMakeFiles/cmTC_7ffd1.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_7ffd1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ffd1.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o -o cmTC_7ffd1
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e2d64/fast"
/usr/bin/make -f CMakeFiles/cmTC_e2d64.dir/build.make CMakeFiles/cmTC_e2d64.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_e2d64
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2d64.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o -o cmTC_e2d64
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_1a30a/fast"
/usr/bin/make -f CMakeFiles/cmTC_1a30a.dir/build.make CMakeFiles/cmTC_1a30a.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_1a30a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a30a.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1a30a
Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
COLLECT_GCC=/usr/bin/arm-none-eabi-g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper
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
Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
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/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a30a'
/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/ccCmmMlv.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_1a30a /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_1a30a.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
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a30a'
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_1a30a/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_1a30a.dir/build.make CMakeFiles/cmTC_1a30a.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_1a30a]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a30a.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1a30a ]
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: [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_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper]
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: [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: [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: [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: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a30a']
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/ccCmmMlv.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_1a30a /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_1a30a.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]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccCmmMlv.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_1a30a] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.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/7.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/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [--end-group] ==> ignore
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [--end-group] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.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/7.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib]
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 fwks: []
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7ec2e/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ec2e.dir/build.make CMakeFiles/cmTC_7ec2e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_7ec2e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ec2e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o -o cmTC_7ec2e
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f37ce/fast"
/usr/bin/make -f CMakeFiles/cmTC_f37ce.dir/build.make CMakeFiles/cmTC_f37ce.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_f37ce
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f37ce.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o -o cmTC_f37ce
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:1cxx_alias_templates
Feature record: CXX_FEATURE:1cxx_alignas
Feature record: CXX_FEATURE:1cxx_alignof
Feature record: CXX_FEATURE:1cxx_attributes
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
Feature record: CXX_FEATURE:1cxx_auto_type
Feature record: CXX_FEATURE:1cxx_binary_literals
Feature record: CXX_FEATURE:1cxx_constexpr
Feature record: CXX_FEATURE:1cxx_contextual_conversions
Feature record: CXX_FEATURE:1cxx_decltype
Feature record: CXX_FEATURE:1cxx_decltype_auto
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:1cxx_default_function_template_args
Feature record: CXX_FEATURE:1cxx_defaulted_functions
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:1cxx_delegating_constructors
Feature record: CXX_FEATURE:1cxx_deleted_functions
Feature record: CXX_FEATURE:1cxx_digit_separators
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
Feature record: CXX_FEATURE:1cxx_explicit_conversions
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
Feature record: CXX_FEATURE:1cxx_extern_templates
Feature record: CXX_FEATURE:1cxx_final
Feature record: CXX_FEATURE:1cxx_func_identifier
Feature record: CXX_FEATURE:1cxx_generalized_initializers
Feature record: CXX_FEATURE:1cxx_generic_lambdas
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
Feature record: CXX_FEATURE:1cxx_inline_namespaces
Feature record: CXX_FEATURE:1cxx_lambdas
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
Feature record: CXX_FEATURE:1cxx_local_type_template_args
Feature record: CXX_FEATURE:1cxx_long_long_type
Feature record: CXX_FEATURE:1cxx_noexcept
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
Feature record: CXX_FEATURE:1cxx_nullptr
Feature record: CXX_FEATURE:1cxx_override
Feature record: CXX_FEATURE:1cxx_range_for
Feature record: CXX_FEATURE:1cxx_raw_string_literals
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
Feature record: CXX_FEATURE:1cxx_return_type_deduction
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
Feature record: CXX_FEATURE:1cxx_rvalue_references
Feature record: CXX_FEATURE:1cxx_sizeof_member
Feature record: CXX_FEATURE:1cxx_static_assert
Feature record: CXX_FEATURE:1cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:1cxx_thread_local
Feature record: CXX_FEATURE:1cxx_trailing_return_types
Feature record: CXX_FEATURE:1cxx_unicode_literals
Feature record: CXX_FEATURE:1cxx_uniform_initialization
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
Feature record: CXX_FEATURE:1cxx_user_literals
Feature record: CXX_FEATURE:1cxx_variable_templates
Feature record: CXX_FEATURE:1cxx_variadic_macros
Feature record: CXX_FEATURE:1cxx_variadic_templates
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6c44f/fast"
/usr/bin/make -f CMakeFiles/cmTC_6c44f.dir/build.make CMakeFiles/cmTC_6c44f.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_6c44f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6c44f.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o -o cmTC_6c44f
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c9720/fast"
/usr/bin/make -f CMakeFiles/cmTC_c9720.dir/build.make CMakeFiles/cmTC_c9720.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_c9720
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9720.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o -o cmTC_c9720
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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,136 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"../CMakeLists.txt"
"../Drivers/CMakeLists.txt"
"../Src/CMakeLists.txt"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
"CMakeFiles/3.13.4/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c"
"CMakeFiles/feature_tests.cxx"
"../startup/CMakeLists.txt"
"/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.13/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.13/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.13/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineASMCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.13/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.13/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.13/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.13/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.13/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.13/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestASMCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.13/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.13/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-ASM.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C-FeatureTests.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-FeatureTests.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/MIPSpro-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.13/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.13/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.13/Modules/Platform/UnixPaths.cmake"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.13.4/CMakeSystem.cmake"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
"Drivers/CMakeFiles/CMakeDirectoryInformation.cmake"
"startup/CMakeFiles/CMakeDirectoryInformation.cmake"
"Src/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/cpp_functions.dir/DependInfo.cmake"
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
"startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"Src/CMakeFiles/CSources.dir/DependInfo.cmake"
)

@ -1,319 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# The main recursive all target
all:
.PHONY : all
# The main recursive preinstall target
preinstall:
.PHONY : preinstall
# The main recursive clean target
clean:
.PHONY : clean
#=============================================================================
# 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/cmakeLowLayer
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
#=============================================================================
# Target rules for target CMakeFiles/cpp_functions.dir
# All Build rule for target.
CMakeFiles/cpp_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/cpp_functions.dir/all: Src/CMakeFiles/CSources.dir/all
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/depend
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=13,14 "Built target cpp_functions"
.PHONY : CMakeFiles/cpp_functions.dir/all
# Include target in all.
all: CMakeFiles/cpp_functions.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/cpp_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/cpp_functions.dir/rule
# Convenience name for target.
cpp_functions: CMakeFiles/cpp_functions.dir/rule
.PHONY : cpp_functions
# clean rule for target.
CMakeFiles/cpp_functions.dir/clean:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/clean
.PHONY : CMakeFiles/cpp_functions.dir/clean
# clean rule for target.
clean: CMakeFiles/cpp_functions.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/refOvenTest.out.dir
# All Build rule for target.
CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/cpp_functions.dir/all
CMakeFiles/refOvenTest.out.dir/all: Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/refOvenTest.out.dir/all: startup/CMakeFiles/Startup.dir/all
CMakeFiles/refOvenTest.out.dir/all: 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/cmakeLowLayer/build/CMakeFiles --progress-num=15,16 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
all: CMakeFiles/refOvenTest.out.dir/all
.PHONY : 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/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 16
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/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) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean
.PHONY : CMakeFiles/refOvenTest.out.dir/clean
# clean rule for target.
clean: CMakeFiles/refOvenTest.out.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory Drivers
# Convenience name for "all" pass in the directory.
Drivers/all: Drivers/CMakeFiles/Drivers.dir/all
.PHONY : Drivers/all
# Convenience name for "clean" pass in the directory.
Drivers/clean: Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : Drivers/clean
# Convenience name for "preinstall" pass in the directory.
Drivers/preinstall:
.PHONY : Drivers/preinstall
#=============================================================================
# Target rules for target Drivers/CMakeFiles/Drivers.dir
# All Build rule for target.
Drivers/CMakeFiles/Drivers.dir/all:
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/depend
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=5,6,7,8,9,10 "Built target Drivers"
.PHONY : Drivers/CMakeFiles/Drivers.dir/all
# Include target in all.
all: Drivers/CMakeFiles/Drivers.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
Drivers/CMakeFiles/Drivers.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 6
$(MAKE) -f CMakeFiles/Makefile2 Drivers/CMakeFiles/Drivers.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : Drivers/CMakeFiles/Drivers.dir/rule
# Convenience name for target.
Drivers: Drivers/CMakeFiles/Drivers.dir/rule
.PHONY : Drivers
# clean rule for target.
Drivers/CMakeFiles/Drivers.dir/clean:
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : Drivers/CMakeFiles/Drivers.dir/clean
# clean rule for target.
clean: Drivers/CMakeFiles/Drivers.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory startup
# Convenience name for "all" pass in the directory.
startup/all: startup/CMakeFiles/Startup.dir/all
.PHONY : startup/all
# Convenience name for "clean" pass in the directory.
startup/clean: startup/CMakeFiles/Startup.dir/clean
.PHONY : startup/clean
# Convenience name for "preinstall" pass in the directory.
startup/preinstall:
.PHONY : startup/preinstall
#=============================================================================
# Target rules for target startup/CMakeFiles/Startup.dir
# All Build rule for target.
startup/CMakeFiles/Startup.dir/all:
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/depend
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=11,12 "Built target Startup"
.PHONY : startup/CMakeFiles/Startup.dir/all
# Include target in all.
all: startup/CMakeFiles/Startup.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
startup/CMakeFiles/Startup.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 2
$(MAKE) -f CMakeFiles/Makefile2 startup/CMakeFiles/Startup.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : startup/CMakeFiles/Startup.dir/rule
# Convenience name for target.
Startup: startup/CMakeFiles/Startup.dir/rule
.PHONY : Startup
# clean rule for target.
startup/CMakeFiles/Startup.dir/clean:
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/clean
.PHONY : startup/CMakeFiles/Startup.dir/clean
# clean rule for target.
clean: startup/CMakeFiles/Startup.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory Src
# Convenience name for "all" pass in the directory.
Src/all: Src/CMakeFiles/CSources.dir/all
.PHONY : Src/all
# Convenience name for "clean" pass in the directory.
Src/clean: Src/CMakeFiles/CSources.dir/clean
.PHONY : Src/clean
# Convenience name for "preinstall" pass in the directory.
Src/preinstall:
.PHONY : Src/preinstall
#=============================================================================
# Target rules for target Src/CMakeFiles/CSources.dir
# All Build rule for target.
Src/CMakeFiles/CSources.dir/all: Drivers/CMakeFiles/Drivers.dir/all
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/depend
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=1,2,3,4 "Built target CSources"
.PHONY : Src/CMakeFiles/CSources.dir/all
# Include target in all.
all: Src/CMakeFiles/CSources.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
Src/CMakeFiles/CSources.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 10
$(MAKE) -f CMakeFiles/Makefile2 Src/CMakeFiles/CSources.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : Src/CMakeFiles/CSources.dir/rule
# Convenience name for target.
CSources: Src/CMakeFiles/CSources.dir/rule
.PHONY : CSources
# clean rule for target.
Src/CMakeFiles/CSources.dir/clean:
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/clean
.PHONY : Src/CMakeFiles/CSources.dir/clean
# clean rule for target.
clean: Src/CMakeFiles/CSources.dir/clean
.PHONY : clean
#=============================================================================
# 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:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,13 +0,0 @@
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/edit_cache.dir

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

@ -1,47 +0,0 @@
# 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/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/cppSrc/transfer.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
"../cppSrc"
"../Src/../Inc"
"../Src/../cppSrc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Include"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,99 +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/cmakeLowLayer
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
# Include any dependencies generated for this target.
include CMakeFiles/cpp_functions.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/cpp_functions.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/cpp_functions.dir/flags.make
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: CMakeFiles/cpp_functions.dir/flags.make
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp > CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s
# Object files for target cpp_functions
cpp_functions_OBJECTS = \
"CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
# External object files for target cpp_functions
cpp_functions_EXTERNAL_OBJECTS =
libcpp_functions.a: CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o
libcpp_functions.a: CMakeFiles/cpp_functions.dir/build.make
libcpp_functions.a: CMakeFiles/cpp_functions.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libcpp_functions.a"
$(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cpp_functions.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/cpp_functions.dir/build: libcpp_functions.a
.PHONY : CMakeFiles/cpp_functions.dir/build
CMakeFiles/cpp_functions.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean.cmake
.PHONY : CMakeFiles/cpp_functions.dir/clean
CMakeFiles/cpp_functions.dir/depend:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/cpp_functions.dir/depend

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

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

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

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# 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_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc

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

Loading…
Cancel
Save