From ef0aa1340ef288932b6078f7fef5f98eb9696baa Mon Sep 17 00:00:00 2001 From: atomega Date: Wed, 6 Oct 2021 11:16:07 +0200 Subject: [PATCH] Was able to additinonaly separate Src and Startup --- bsl/cmakeLowLayer/CMakeLists.txt | 7 +- bsl/cmakeLowLayer/Src/CMakeLists.txt | 4 + bsl/cmakeLowLayer/build/CMakeCache.txt | 16 +- .../build/CMakeFiles/CMakeOutput.log | 214 ++++++++-------- .../build/CMakeFiles/Makefile.cmake | 3 + bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 | 77 +++++- .../build/CMakeFiles/TargetDirectories.txt | 3 + .../c_functions.dir/DependInfo.cmake | 1 - .../CMakeFiles/c_functions.dir/progress.make | 6 +- .../cpp_functions.dir/CXX.includecache | 136 +++++----- .../cpp_functions.dir/DependInfo.cmake | 10 +- .../cpp_functions.dir/depend.internal | 44 ++-- .../CMakeFiles/cpp_functions.dir/depend.make | 44 ++-- .../CMakeFiles/cpp_functions.dir/flags.make | 2 +- .../cpp_functions.dir/progress.make | 4 +- .../build/CMakeFiles/progress.marks | 2 +- .../refOvenTest.out.dir/C.includecache | 4 +- .../refOvenTest.out.dir/DependInfo.cmake | 7 +- .../CMakeFiles/refOvenTest.out.dir/build.make | 4 +- .../refOvenTest.out.dir/depend.internal | 2 +- .../refOvenTest.out.dir/depend.make | 2 +- .../CMakeFiles/refOvenTest.out.dir/flags.make | 2 +- .../CMakeFiles/refOvenTest.out.dir/link.txt | 2 +- .../refOvenTest.out.dir/progress.make | 4 +- .../CMakeFiles/Drivers.dir/progress.make | 12 +- bsl/cmakeLowLayer/build/Makefile | 14 + .../CMakeDirectoryInformation.cmake | 16 ++ .../CMakeFiles/CSources.dir/C.includecache | 182 +++++++++++++ .../CMakeFiles/CSources.dir/DependInfo.cmake | 47 ++++ .../Src/CMakeFiles/CSources.dir/build.make | 129 ++++++++++ .../CMakeFiles/CSources.dir/cmake_clean.cmake | 12 + .../CSources.dir/cmake_clean_target.cmake | 3 + .../CMakeFiles/CSources.dir/depend.internal | 65 +++++ .../Src/CMakeFiles/CSources.dir/depend.make | 65 +++++ .../Src/CMakeFiles/CSources.dir/flags.make | 10 + .../Src/CMakeFiles/CSources.dir/link.txt | 2 + .../Src/CMakeFiles/CSources.dir/progress.make | 5 + .../build/Src/CMakeFiles/progress.marks | 1 + bsl/cmakeLowLayer/build/Src/Makefile | 240 ++++++++++++++++++ .../build/Src/cmake_install.cmake | 39 +++ bsl/cmakeLowLayer/build/cmake_install.cmake | 1 + bsl/cmakeLowLayer/build/refOvenTest.bin | Bin 7932 -> 7932 bytes .../CMakeFiles/Startup.dir/progress.make | 4 +- bsl/cmakeLowLayer/cppSrc/transfer.cpp | 2 +- 44 files changed, 1179 insertions(+), 270 deletions(-) create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/C.includecache create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/build.make create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean_target.cmake create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.internal create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.make create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/flags.make create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/link.txt create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/progress.make create mode 100644 bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks create mode 100644 bsl/cmakeLowLayer/build/Src/Makefile create mode 100644 bsl/cmakeLowLayer/build/Src/cmake_install.cmake diff --git a/bsl/cmakeLowLayer/CMakeLists.txt b/bsl/cmakeLowLayer/CMakeLists.txt index 9897cf1..73eecb0 100644 --- a/bsl/cmakeLowLayer/CMakeLists.txt +++ b/bsl/cmakeLowLayer/CMakeLists.txt @@ -83,7 +83,7 @@ set(LINKER_FLAGS #################################################################################################### add_subdirectory(Drivers) add_subdirectory(startup) -#add_subdirectory(Src) +add_subdirectory(Src) #################################################################################################### #LIBRARIES @@ -105,8 +105,7 @@ target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES}) #################################################################################################### #LINKING LIBRARIES #################################################################################################### -target_link_libraries(${CPP_FUNC} ${C_FUNC}) -target_link_libraries(${C_FUNC} sub::drivers) +target_link_libraries(${CPP_FUNC} sub::cSources) #################################################################################################### #EXECUTABLE @@ -119,7 +118,7 @@ target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES}) #################################################################################################### #LINKING EXECUTEABLE #################################################################################################### -target_link_libraries(${EXECUTABLE} sub::startup ${C_FUNC} ${CPP_FUNC}) +target_link_libraries(${EXECUTABLE} sub::startup sub::cSources ${CPP_FUNC})#${C_FUNC} ${CPP_FUNC}) target_link_options(${EXECUTABLE} PRIVATE ${CPU_MCU} -mthumb diff --git a/bsl/cmakeLowLayer/Src/CMakeLists.txt b/bsl/cmakeLowLayer/Src/CMakeLists.txt index dc51753..9683724 100644 --- a/bsl/cmakeLowLayer/Src/CMakeLists.txt +++ b/bsl/cmakeLowLayer/Src/CMakeLists.txt @@ -2,6 +2,7 @@ project(CSources) set (C_INCLUDES ../Inc + ../cppSrc ../Drivers/STM32F0xx_HAL_Driver/Inc ../Drivers/CMSIS/Device/ST/STM32F0xx/Include ../Drivers/CMSIS/Include) @@ -11,10 +12,13 @@ set(C_SOURCES 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}) diff --git a/bsl/cmakeLowLayer/build/CMakeCache.txt b/bsl/cmakeLowLayer/build/CMakeCache.txt index 7ffa1b9..1348eda 100644 --- a/bsl/cmakeLowLayer/build/CMakeCache.txt +++ b/bsl/cmakeLowLayer/build/CMakeCache.txt @@ -214,6 +214,15 @@ CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip // 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 @@ -227,10 +236,7 @@ Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/startup Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/startup //Dependencies for the target -c_functions_LIB_DEPENDS:STATIC=general;sub::drivers; - -//Dependencies for the target -cpp_functions_LIB_DEPENDS:STATIC=general;c_functions; +cpp_functions_LIB_DEPENDS:STATIC=general;sub::cSources; //Value Computed by CMake refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build @@ -350,7 +356,7 @@ 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=3 +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 //ADVANCED property for variable: CMAKE_OBJDUMP CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 //Platform information initialized diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log index d4c514d..1364fc6 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log @@ -34,28 +34,28 @@ The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmake 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_abaeb/fast" -/usr/bin/make -f CMakeFiles/cmTC_abaeb.dir/build.make CMakeFiles/cmTC_abaeb.dir/build +Run Build Command:"/usr/bin/make" "cmTC_6267d/fast" +/usr/bin/make -f CMakeFiles/cmTC_6267d.dir/build.make CMakeFiles/cmTC_6267d.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_abaeb -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_abaeb.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -o cmTC_abaeb +Building C object CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_6267d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6267d.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o -o cmTC_6267d 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_c00de/fast" -/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build +Run Build Command:"/usr/bin/make" "cmTC_27182/fast" +/usr/bin/make -f CMakeFiles/cmTC_27182.dir/build.make CMakeFiles/cmTC_27182.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c -Linking C executable cmTC_c00de -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de +Building C object CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_27182 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27182.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -o cmTC_27182 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 @@ -67,9 +67,9 @@ 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_c00de' - /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/ccmi4CH1.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_c00de /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_c00de.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_c00de' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_27182' + /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/ccdu7qxi.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_27182 /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_27182.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_27182' make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -77,14 +77,14 @@ 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_c00de/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_27182/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_27182.dir/build.make CMakeFiles/cmTC_27182.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] - ignore line: [Linking C executable cmTC_c00de] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de ] + ignore line: [Building C object CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_27182] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27182.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -o cmTC_27182 ] 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] @@ -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: [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_c00de'] - 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/ccmi4CH1.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_c00de /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_c00de.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] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_27182'] + 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/ccdu7qxi.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_27182 /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_27182.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/ccmi4CH1.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccdu7qxi.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> 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 [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_c00de] ==> ignore + arg [cmTC_27182] ==> 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_c00de.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o] ==> ignore arg [--start-group] ==> ignore arg [-lgcc] ==> lib [gcc] arg [-lc] ==> lib [c] @@ -140,14 +140,14 @@ Parsed C implicit link information from above output: Detecting C [-std=c11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_a3da3/fast" -/usr/bin/make -f CMakeFiles/cmTC_a3da3.dir/build.make CMakeFiles/cmTC_a3da3.dir/build +Run Build Command:"/usr/bin/make" "cmTC_2ccb5/fast" +/usr/bin/make -f CMakeFiles/cmTC_2ccb5.dir/build.make CMakeFiles/cmTC_2ccb5.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_a3da3 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3da3.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -o cmTC_a3da3 +Building C object CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_2ccb5 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ccb5.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o -o cmTC_2ccb5 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -160,14 +160,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting C [-std=c99] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_444a2/fast" -/usr/bin/make -f CMakeFiles/cmTC_444a2.dir/build.make CMakeFiles/cmTC_444a2.dir/build +Run Build Command:"/usr/bin/make" "cmTC_7e4f5/fast" +/usr/bin/make -f CMakeFiles/cmTC_7e4f5.dir/build.make CMakeFiles/cmTC_7e4f5.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_444a2 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_444a2.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -o cmTC_444a2 +Building C object CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_7e4f5 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e4f5.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o -o cmTC_7e4f5 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -180,14 +180,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting C [-std=c90] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_31fb0/fast" -/usr/bin/make -f CMakeFiles/cmTC_31fb0.dir/build.make CMakeFiles/cmTC_31fb0.dir/build +Run Build Command:"/usr/bin/make" "cmTC_3e60e/fast" +/usr/bin/make -f CMakeFiles/cmTC_3e60e.dir/build.make CMakeFiles/cmTC_3e60e.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_31fb0 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31fb0.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -o cmTC_31fb0 +Building C object CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_3e60e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3e60e.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o -o cmTC_3e60e make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -198,28 +198,28 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Determining if the CXX compiler works passed with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_f2a35/fast" -/usr/bin/make -f CMakeFiles/cmTC_f2a35.dir/build.make CMakeFiles/cmTC_f2a35.dir/build +Run Build Command:"/usr/bin/make" "cmTC_5862e/fast" +/usr/bin/make -f CMakeFiles/cmTC_5862e.dir/build.make CMakeFiles/cmTC_5862e.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_f2a35 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f2a35.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -o cmTC_f2a35 +Building CXX object CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_5862e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5862e.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o -o cmTC_5862e 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_56b49/fast" -/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build +Run Build Command:"/usr/bin/make" "cmTC_a3998/fast" +/usr/bin/make -f CMakeFiles/cmTC_a3998.dir/build.make CMakeFiles/cmTC_a3998.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp -Linking CXX executable cmTC_56b49 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49 +Building CXX object CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_a3998 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3998.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a3998 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 @@ -231,9 +231,9 @@ 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_56b49' - /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/ccJiZHFC.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_56b49 /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_56b49.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_56b49' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_a3998' + /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/ccCpqD8P.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_a3998 /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_a3998.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_a3998' make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -241,14 +241,14 @@ 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_56b49/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_a3998/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_a3998.dir/build.make CMakeFiles/cmTC_a3998.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Linking CXX executable cmTC_56b49] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49 ] + ignore line: [Building CXX object CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_a3998] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3998.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a3998 ] 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] @@ -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: [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_56b49'] - 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/ccJiZHFC.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_56b49 /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_56b49.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] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_a3998'] + 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/ccCpqD8P.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_a3998 /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_a3998.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/ccJiZHFC.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccCpqD8P.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> 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 [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_56b49] ==> ignore + arg [cmTC_a3998] ==> 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_56b49.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [--start-group] ==> ignore @@ -306,14 +306,14 @@ Parsed CXX implicit link information from above output: Detecting CXX [-std=c++1z] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_b97e7/fast" -/usr/bin/make -f CMakeFiles/cmTC_b97e7.dir/build.make CMakeFiles/cmTC_b97e7.dir/build +Run Build Command:"/usr/bin/make" "cmTC_6547a/fast" +/usr/bin/make -f CMakeFiles/cmTC_6547a.dir/build.make CMakeFiles/cmTC_6547a.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_b97e7 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b97e7.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -o cmTC_b97e7 +Building CXX object CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_6547a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6547a.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o -o cmTC_6547a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -379,14 +379,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++14] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_05073/fast" -/usr/bin/make -f CMakeFiles/cmTC_05073.dir/build.make CMakeFiles/cmTC_05073.dir/build +Run Build Command:"/usr/bin/make" "cmTC_05034/fast" +/usr/bin/make -f CMakeFiles/cmTC_05034.dir/build.make CMakeFiles/cmTC_05034.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_05073 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05073.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -o cmTC_05073 +Building CXX object CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_05034 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05034.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o -o cmTC_05034 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -452,14 +452,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_215a3/fast" -/usr/bin/make -f CMakeFiles/cmTC_215a3.dir/build.make CMakeFiles/cmTC_215a3.dir/build +Run Build Command:"/usr/bin/make" "cmTC_c5705/fast" +/usr/bin/make -f CMakeFiles/cmTC_c5705.dir/build.make CMakeFiles/cmTC_c5705.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_215a3 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_215a3.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -o cmTC_215a3 +Building CXX object CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_c5705 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5705.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o -o cmTC_c5705 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -525,14 +525,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi Detecting CXX [-std=c++98] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_2c26a/fast" -/usr/bin/make -f CMakeFiles/cmTC_2c26a.dir/build.make CMakeFiles/cmTC_2c26a.dir/build +Run Build Command:"/usr/bin/make" "cmTC_2dc75/fast" +/usr/bin/make -f CMakeFiles/cmTC_2dc75.dir/build.make CMakeFiles/cmTC_2dc75.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_2c26a -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c26a.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -o cmTC_2c26a +Building CXX object CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_2dc75 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2dc75.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o -o cmTC_2dc75 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake index a8e58ad..f331e63 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake @@ -9,6 +9,7 @@ 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" @@ -122,6 +123,7 @@ set(CMAKE_MAKEFILE_PRODUCTS "CMakeFiles/CMakeDirectoryInformation.cmake" "Drivers/CMakeFiles/CMakeDirectoryInformation.cmake" "startup/CMakeFiles/CMakeDirectoryInformation.cmake" + "Src/CMakeFiles/CMakeDirectoryInformation.cmake" ) # Dependency information for all targets: @@ -131,4 +133,5 @@ set(CMAKE_DEPEND_INFO_FILES "CMakeFiles/cpp_functions.dir/DependInfo.cmake" "Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "startup/CMakeFiles/Startup.dir/DependInfo.cmake" + "Src/CMakeFiles/CSources.dir/DependInfo.cmake" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 index 9480674..ffb332f 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 @@ -68,13 +68,13 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build # Target rules for target CMakeFiles/refOvenTest.out.dir # All Build rule for target. -CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/c_functions.dir/all 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=14,15 "Built target refOvenTest.out" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=18,19 "Built target refOvenTest.out" .PHONY : CMakeFiles/refOvenTest.out.dir/all # Include target in all. @@ -84,7 +84,7 @@ all: CMakeFiles/refOvenTest.out.dir/all # Build rule for subdir invocation for target. CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 15 + $(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 @@ -108,10 +108,10 @@ clean: CMakeFiles/refOvenTest.out.dir/clean # Target rules for target CMakeFiles/c_functions.dir # All Build rule for target. -CMakeFiles/c_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all +CMakeFiles/c_functions.dir/all: $(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/depend $(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=9,10,11 "Built target c_functions" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=13,14,15 "Built target c_functions" .PHONY : CMakeFiles/c_functions.dir/all # Include target in all. @@ -121,7 +121,7 @@ all: CMakeFiles/c_functions.dir/all # Build rule for subdir invocation for target. CMakeFiles/c_functions.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 9 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 3 $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/c_functions.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 .PHONY : CMakeFiles/c_functions.dir/rule @@ -145,11 +145,11 @@ clean: CMakeFiles/c_functions.dir/clean # Target rules for target CMakeFiles/cpp_functions.dir # All Build rule for target. -CMakeFiles/cpp_functions.dir/all: CMakeFiles/c_functions.dir/all 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=12,13 "Built target cpp_functions" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=16,17 "Built target cpp_functions" .PHONY : CMakeFiles/cpp_functions.dir/all # Include target in all. @@ -159,7 +159,7 @@ all: CMakeFiles/cpp_functions.dir/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 11 + $(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 @@ -204,7 +204,7 @@ Drivers/preinstall: 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=1,2,3,4,5,6 "Built target Drivers" + @$(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. @@ -259,7 +259,7 @@ startup/preinstall: 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=7,8 "Built target Startup" + @$(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. @@ -289,6 +289,61 @@ 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. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt index 6379f65..dafe812 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt +++ b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt @@ -9,3 +9,6 @@ /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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake index d2153a4..f3468f8 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake @@ -35,7 +35,6 @@ set(CMAKE_C_TARGET_INCLUDE_PATH # Targets to which this target links. set(CMAKE_TARGET_LINKED_INFO_FILES - "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) # Fortran module output directory. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make index eaef64c..d47d864 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make @@ -1,4 +1,4 @@ -CMAKE_PROGRESS_1 = 9 -CMAKE_PROGRESS_2 = 10 -CMAKE_PROGRESS_3 = 11 +CMAKE_PROGRESS_1 = 13 +CMAKE_PROGRESS_2 = 14 +CMAKE_PROGRESS_3 = 15 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/CXX.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/CXX.includecache index e4f7709..f58729a 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/CXX.includecache +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/CXX.includecache @@ -6,67 +6,67 @@ #IncludeRegexTransform: -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h core_cm0.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h system_stm32f0xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h stdint.h - -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h stm32f030x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h stm32f030x8.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h stm32f031x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h stm32f038xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h stm32f042x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h stm32f048xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h stm32f051x8.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h stm32f058xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h stm32f070x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h stm32f070xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h stm32f071xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h stm32f072xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h stm32f078xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h stm32f091xc.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h stm32f098xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h stm32f030xc.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h stm32f0xx_hal.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -../Drivers/CMSIS/Include/cmsis_armcc.h +../Src/../Drivers/CMSIS/Include/cmsis_armcc.h -../Drivers/CMSIS/Include/cmsis_armclang.h +../Src/../Drivers/CMSIS/Include/cmsis_armclang.h arm_compat.h - -../Drivers/CMSIS/Include/cmsis_compiler.h +../Src/../Drivers/CMSIS/Include/cmsis_compiler.h stdint.h - cmsis_armcc.h -../Drivers/CMSIS/Include/cmsis_armcc.h +../Src/../Drivers/CMSIS/Include/cmsis_armcc.h cmsis_armclang.h -../Drivers/CMSIS/Include/cmsis_armclang.h +../Src/../Drivers/CMSIS/Include/cmsis_armclang.h cmsis_gcc.h -../Drivers/CMSIS/Include/cmsis_gcc.h +../Src/../Drivers/CMSIS/Include/cmsis_gcc.h cmsis_iccarm.h - cmsis_ccs.h @@ -74,89 +74,89 @@ cmsis_ccs.h cmsis_csm.h - -../Drivers/CMSIS/Include/cmsis_gcc.h +../Src/../Drivers/CMSIS/Include/cmsis_gcc.h -../Drivers/CMSIS/Include/cmsis_iccarm.h +../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h iccarm_builtin.h -../Drivers/CMSIS/Include/iccarm_builtin.h +../Src/../Drivers/CMSIS/Include/iccarm_builtin.h intrinsics.h - -../Drivers/CMSIS/Include/cmsis_version.h +../Src/../Drivers/CMSIS/Include/cmsis_version.h -../Drivers/CMSIS/Include/core_cm0.h +../Src/../Drivers/CMSIS/Include/core_cm0.h stdint.h - cmsis_version.h -../Drivers/CMSIS/Include/cmsis_version.h +../Src/../Drivers/CMSIS/Include/cmsis_version.h cmsis_compiler.h -../Drivers/CMSIS/Include/cmsis_compiler.h +../Src/../Drivers/CMSIS/Include/cmsis_compiler.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h +../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Inc/main.h +../Src/../Inc/main.h stm32f0xx_ll_crs.h -../Inc/stm32f0xx_ll_crs.h +../Src/../Inc/stm32f0xx_ll_crs.h stm32f0xx_ll_rcc.h -../Inc/stm32f0xx_ll_rcc.h +../Src/../Inc/stm32f0xx_ll_rcc.h stm32f0xx_ll_bus.h -../Inc/stm32f0xx_ll_bus.h +../Src/../Inc/stm32f0xx_ll_bus.h stm32f0xx_ll_system.h -../Inc/stm32f0xx_ll_system.h +../Src/../Inc/stm32f0xx_ll_system.h stm32f0xx_ll_exti.h -../Inc/stm32f0xx_ll_exti.h +../Src/../Inc/stm32f0xx_ll_exti.h stm32f0xx_ll_cortex.h -../Inc/stm32f0xx_ll_cortex.h +../Src/../Inc/stm32f0xx_ll_cortex.h stm32f0xx_ll_utils.h -../Inc/stm32f0xx_ll_utils.h +../Src/../Inc/stm32f0xx_ll_utils.h stm32f0xx_ll_pwr.h -../Inc/stm32f0xx_ll_pwr.h +../Src/../Inc/stm32f0xx_ll_pwr.h stm32f0xx_ll_dma.h -../Inc/stm32f0xx_ll_dma.h +../Src/../Inc/stm32f0xx_ll_dma.h stm32f0xx_ll_gpio.h -../Inc/stm32f0xx_ll_gpio.h +../Src/../Inc/stm32f0xx_ll_gpio.h stm32_assert.h -../Inc/stm32_assert.h +../Src/../Inc/stm32_assert.h -../Inc/stm32_assert.h +../Src/../Inc/stm32_assert.h /home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp transfer.h diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake index 4516c55..66d168f 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake @@ -27,15 +27,19 @@ set(CMAKE_TARGET_DEFINITIONS_CXX # The include file search paths: set(CMAKE_CXX_TARGET_INCLUDE_PATH "../cppSrc" - "../Inc" - "../Drivers/STM32F0xx_HAL_Driver/Inc" + "../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/CMakeFiles/c_functions.dir/DependInfo.cmake" + "/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" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.internal b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.internal index ea48918..b02cb55 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.internal +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.internal @@ -2,27 +2,27 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.13 CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h - ../Drivers/CMSIS/Include/cmsis_armcc.h - ../Drivers/CMSIS/Include/cmsis_armclang.h - ../Drivers/CMSIS/Include/cmsis_compiler.h - ../Drivers/CMSIS/Include/cmsis_gcc.h - ../Drivers/CMSIS/Include/cmsis_iccarm.h - ../Drivers/CMSIS/Include/cmsis_version.h - ../Drivers/CMSIS/Include/core_cm0.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h - ../Inc/main.h - ../Inc/stm32_assert.h + ../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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.make b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.make index af263aa..d57efaf 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/depend.make @@ -1,28 +1,28 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_armcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_armclang.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_compiler.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_gcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_version.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/core_cm0.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Inc/main.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Inc/stm32_assert.h +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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make index cde8f57..32b8c89 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make @@ -6,5 +6,5 @@ CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color= 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/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include +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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make index 7df1340..d7d1be2 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 12 -CMAKE_PROGRESS_2 = 13 +CMAKE_PROGRESS_1 = 16 +CMAKE_PROGRESS_2 = 17 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks index 60d3b2f..d6b2404 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks +++ b/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks @@ -1 +1 @@ -15 +19 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache index 61c87cb..117ece8 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache @@ -158,9 +158,9 @@ stm32_assert.h ../Inc/stm32_assert.h -../cppSrc/transfer.h +../Src/../cppSrc/transfer.h main.h -../cppSrc/main.h +../Src/../cppSrc/main.h /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c main.h diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake index b1dae39..270595b 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake @@ -30,13 +30,18 @@ set(CMAKE_C_TARGET_INCLUDE_PATH "../Drivers/STM32F0xx_HAL_Driver/Inc" "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../Drivers/CMSIS/Include" + "../Src/../Inc" + "../Src/../cppSrc" + "../Src/../Drivers/STM32F0xx_HAL_Driver/Inc" + "../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../Src/../Drivers/CMSIS/Include" "../cppSrc" ) # Targets to which this target links. set(CMAKE_TARGET_LINKED_INFO_FILES "/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake" - "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake" + "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make index ad65fe1..d89b908 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -80,9 +80,9 @@ refOvenTest_out_EXTERNAL_OBJECTS = refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make refOvenTest.out: startup/libStartup.a -refOvenTest.out: libc_functions.a +refOvenTest.out: Src/libCSources.a refOvenTest.out: libcpp_functions.a -refOvenTest.out: libc_functions.a +refOvenTest.out: Src/libCSources.a refOvenTest.out: Drivers/libDrivers.a 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/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out" diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal index 630f2bf..c1dc8aa 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal @@ -24,5 +24,5 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../Inc/main.h ../Inc/stm32_assert.h - ../cppSrc/transfer.h + ../Src/../cppSrc/transfer.h /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make index b33b6a5..eba81f1 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make @@ -23,6 +23,6 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/main.h CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/stm32_assert.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../cppSrc/transfer.h +CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/../cppSrc/transfer.h CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make index 89a39f5..bb5edda 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -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_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -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/cppSrc +C_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -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/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/cppSrc diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt index b3abbe9..30d1b91 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt @@ -1 +1 @@ -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a libc_functions.a libcpp_functions.a libc_functions.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/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a libcpp_functions.a Src/libCSources.a Drivers/libDrivers.a diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make index 8063b3b..2b041ba 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 14 -CMAKE_PROGRESS_2 = 15 +CMAKE_PROGRESS_1 = 18 +CMAKE_PROGRESS_2 = 19 diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make index daba7fa..90fe4ee 100644 --- a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make @@ -1,7 +1,7 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 -CMAKE_PROGRESS_4 = 4 -CMAKE_PROGRESS_5 = 5 -CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 +CMAKE_PROGRESS_3 = 7 +CMAKE_PROGRESS_4 = 8 +CMAKE_PROGRESS_5 = 9 +CMAKE_PROGRESS_6 = 10 diff --git a/bsl/cmakeLowLayer/build/Makefile b/bsl/cmakeLowLayer/build/Makefile index ac67967..3ab7110 100644 --- a/bsl/cmakeLowLayer/build/Makefile +++ b/bsl/cmakeLowLayer/build/Makefile @@ -175,6 +175,19 @@ Startup/fast: $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build .PHONY : Startup/fast +#============================================================================= +# Target rules for targets named CSources + +# Build rule for target. +CSources: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 CSources +.PHONY : CSources + +# fast build rule for target. +CSources/fast: + $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build +.PHONY : CSources/fast + Src/main.o: Src/main.c.o .PHONY : Src/main.o @@ -296,6 +309,7 @@ help: @echo "... cpp_functions" @echo "... Drivers" @echo "... Startup" + @echo "... CSources" @echo "... Src/main.o" @echo "... Src/main.i" @echo "... Src/main.s" diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CMakeDirectoryInformation.cmake b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..77686e2 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -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/cmakeLowLayer") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/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}) diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/C.includecache b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/C.includecache new file mode 100644 index 0000000..f6592d5 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/C.includecache @@ -0,0 +1,182 @@ +#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 + +../Src/../Inc/stm32f0xx_it.h + +../Src/../cppSrc/transfer.h +main.h +../Src/../cppSrc/main.h + +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c +main.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h +transfer.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/transfer.h + +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c +main.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h +stm32f0xx_it.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.h + +/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c +stm32f0xx.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx.h + diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake new file mode 100644 index 0000000..14b463f --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake @@ -0,0 +1,47 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/main.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "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_C_TARGET_INCLUDE_PATH + "../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/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/build.make b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/build.make new file mode 100644 index 0000000..80d57a5 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/build.make @@ -0,0 +1,129 @@ +# 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 Src/CMakeFiles/CSources.dir/depend.make + +# Include the progress variables for this target. +include Src/CMakeFiles/CSources.dir/progress.make + +# Include the compile flags for this target's objects. +include Src/CMakeFiles/CSources.dir/flags.make + +Src/CMakeFiles/CSources.dir/main.c.o: Src/CMakeFiles/CSources.dir/flags.make +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/main.c + @$(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 C object Src/CMakeFiles/CSources.dir/main.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/main.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c + +Src/CMakeFiles/CSources.dir/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/main.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c > CMakeFiles/CSources.dir/main.c.i + +Src/CMakeFiles/CSources.dir/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/main.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c -o CMakeFiles/CSources.dir/main.c.s + +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: Src/CMakeFiles/CSources.dir/flags.make +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/Src/stm32f0xx_it.c + +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_it.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/CSources.dir/stm32f0xx_it.c.i + +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_it.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/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 +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/Src/system_stm32f0xx.c + +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/system_stm32f0xx.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/CSources.dir/system_stm32f0xx.c.i + +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/system_stm32f0xx.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c -o CMakeFiles/CSources.dir/system_stm32f0xx.c.s + +# Object files for target CSources +CSources_OBJECTS = \ +"CMakeFiles/CSources.dir/main.c.o" \ +"CMakeFiles/CSources.dir/stm32f0xx_it.c.o" \ +"CMakeFiles/CSources.dir/system_stm32f0xx.c.o" + +# External object files for target CSources +CSources_EXTERNAL_OBJECTS = + +Src/libCSources.a: Src/CMakeFiles/CSources.dir/main.c.o +Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o +Src/libCSources.a: Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o +Src/libCSources.a: Src/CMakeFiles/CSources.dir/build.make +Src/libCSources.a: Src/CMakeFiles/CSources.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_4) "Linking C static library libCSources.a" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean_target.cmake + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/CSources.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +Src/CMakeFiles/CSources.dir/build: Src/libCSources.a + +.PHONY : Src/CMakeFiles/CSources.dir/build + +Src/CMakeFiles/CSources.dir/clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean.cmake +.PHONY : Src/CMakeFiles/CSources.dir/clean + +Src/CMakeFiles/CSources.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/Src /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/Src /home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : Src/CMakeFiles/CSources.dir/depend + diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake new file mode 100644 index 0000000..eee571a --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/CSources.dir/main.c.o" + "CMakeFiles/CSources.dir/stm32f0xx_it.c.o" + "CMakeFiles/CSources.dir/system_stm32f0xx.c.o" + "libCSources.pdb" + "libCSources.a" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/CSources.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean_target.cmake b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..7c8467a --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libCSources.a" +) diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.internal b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.internal new file mode 100644 index 0000000..f716876 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.internal @@ -0,0 +1,65 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +Src/CMakeFiles/CSources.dir/main.c.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 + ../Src/../cppSrc/transfer.h + /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.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 + ../Src/../Inc/stm32f0xx_it.h + /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.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 + /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.make b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.make new file mode 100644 index 0000000..74a3f1f --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/depend.make @@ -0,0 +1,65 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Inc/main.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Inc/stm32_assert.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../cppSrc/transfer.h +Src/CMakeFiles/CSources.dir/main.c.o: ../Src/main.c + +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/main.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/stm32_assert.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/stm32f0xx_it.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c + +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h +Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c + diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/flags.make b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/flags.make new file mode 100644 index 0000000..cbd2602 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# compile C with /usr/bin/arm-none-eabi-gcc +C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections + +C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +C_INCLUDES = -I/home/key/github/KED/bsl/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 + diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/link.txt b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/link.txt new file mode 100644 index 0000000..71e72c4 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/main.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o +/usr/bin/arm-none-eabi-ranlib libCSources.a diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/progress.make b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/progress.make new file mode 100644 index 0000000..a69a57e --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 + diff --git a/bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +10 diff --git a/bsl/cmakeLowLayer/build/Src/Makefile b/bsl/cmakeLowLayer/build/Src/Makefile new file mode 100644 index 0000000..8afa9e1 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/Makefile @@ -0,0 +1,240 @@ +# 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/cmakeLowLayer + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/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/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall +.PHONY : preinstall/fast + +# clear depends +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 +.PHONY : depend + +# Convenience name for target. +Src/CMakeFiles/CSources.dir/rule: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/CMakeFiles/CSources.dir/rule +.PHONY : Src/CMakeFiles/CSources.dir/rule + +# Convenience name for target. +CSources: Src/CMakeFiles/CSources.dir/rule + +.PHONY : CSources + +# fast build rule for target. +CSources/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build +.PHONY : CSources/fast + +main.o: main.c.o + +.PHONY : main.o + +# target to build an object file +main.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.o +.PHONY : main.c.o + +main.i: main.c.i + +.PHONY : main.i + +# target to preprocess a source file +main.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.i +.PHONY : main.c.i + +main.s: main.c.s + +.PHONY : main.s + +# target to generate assembly for a file +main.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.s +.PHONY : main.c.s + +stm32f0xx_it.o: stm32f0xx_it.c.o + +.PHONY : stm32f0xx_it.o + +# target to build an object file +stm32f0xx_it.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o +.PHONY : stm32f0xx_it.c.o + +stm32f0xx_it.i: stm32f0xx_it.c.i + +.PHONY : stm32f0xx_it.i + +# target to preprocess a source file +stm32f0xx_it.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i +.PHONY : stm32f0xx_it.c.i + +stm32f0xx_it.s: stm32f0xx_it.c.s + +.PHONY : stm32f0xx_it.s + +# target to generate assembly for a file +stm32f0xx_it.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s +.PHONY : stm32f0xx_it.c.s + +system_stm32f0xx.o: system_stm32f0xx.c.o + +.PHONY : system_stm32f0xx.o + +# target to build an object file +system_stm32f0xx.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o +.PHONY : system_stm32f0xx.c.o + +system_stm32f0xx.i: system_stm32f0xx.c.i + +.PHONY : system_stm32f0xx.i + +# target to preprocess a source file +system_stm32f0xx.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i +.PHONY : system_stm32f0xx.c.i + +system_stm32f0xx.s: system_stm32f0xx.c.s + +.PHONY : system_stm32f0xx.s + +# target to generate assembly for a file +system_stm32f0xx.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s +.PHONY : system_stm32f0xx.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... CSources" + @echo "... edit_cache" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... stm32f0xx_it.o" + @echo "... stm32f0xx_it.i" + @echo "... stm32f0xx_it.s" + @echo "... system_stm32f0xx.o" + @echo "... system_stm32f0xx.i" + @echo "... system_stm32f0xx.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/bsl/cmakeLowLayer/build/Src/cmake_install.cmake b/bsl/cmakeLowLayer/build/Src/cmake_install.cmake new file mode 100644 index 0000000..9651ce5 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Src/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/Src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/bsl/cmakeLowLayer/build/cmake_install.cmake b/bsl/cmakeLowLayer/build/cmake_install.cmake index b6c3ca7..9a7f336 100644 --- a/bsl/cmakeLowLayer/build/cmake_install.cmake +++ b/bsl/cmakeLowLayer/build/cmake_install.cmake @@ -41,6 +41,7 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY) # Include the install script for each subdirectory. include("/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake") include("/home/key/github/KED/bsl/cmakeLowLayer/build/startup/cmake_install.cmake") + include("/home/key/github/KED/bsl/cmakeLowLayer/build/Src/cmake_install.cmake") endif() diff --git a/bsl/cmakeLowLayer/build/refOvenTest.bin b/bsl/cmakeLowLayer/build/refOvenTest.bin index 63488d3ff4ab9acb279ecf2f5b134767a46be3d5..27e15eb585def8e65c58cc8bdf5e79db42cc38db 100755 GIT binary patch delta 14 Vcmexk`^R=ei4^1P&81T9EC4lr1{weW delta 14 Vcmexk`^R=ei4=2EG4763E;1=;`r diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make index 72bb7dd..596289c 100644 --- a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 7 -CMAKE_PROGRESS_2 = 8 +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 diff --git a/bsl/cmakeLowLayer/cppSrc/transfer.cpp b/bsl/cmakeLowLayer/cppSrc/transfer.cpp index 6037e76..3f35a78 100644 --- a/bsl/cmakeLowLayer/cppSrc/transfer.cpp +++ b/bsl/cmakeLowLayer/cppSrc/transfer.cpp @@ -6,7 +6,7 @@ int cppHook() { /* USER CODE END WHILE */ LL_GPIO_TogglePin(LED_G_GPIO_Port,LED_G_Pin); - LL_mDelay(500); + LL_mDelay(1000); /* USER CODE BEGIN 3 */ } return 1;