diff --git a/bsl/cmakeLowLayer/CMakeLists.txt b/bsl/cmakeLowLayer/CMakeLists.txt index 2989c44..296dfbc 100644 --- a/bsl/cmakeLowLayer/CMakeLists.txt +++ b/bsl/cmakeLowLayer/CMakeLists.txt @@ -7,8 +7,15 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_PROCESSOR arm) set(CMAKE_CROSSCOMPILING TRUE) +#define th global variables for CMAKE to use for this project. +set(LINKER startup/STM32F042K6Tx_FLASH.ld) +set(STARTUP startup/startup_stm32f042x6.s) +set(CPU_MCU "-mcpu=cortex-m0") + set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") +#The reason that we use arm-none-eabi-gcc is that we will invoke c before hte assemly. +#Check $<$:-x assembler-with-cpp ${ASM_FLAGS}> set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") set(CMAKE_OBJCOPY "usr/bin/arm-none-eabi-objcopy") @@ -22,23 +29,26 @@ set(C_SOURCES Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c Src/system_stm32f0xx.c Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c - Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c) + +set(C_HEADERS Inc/main.h Inc/stm32_assert.h - Inc/stm32f0xx_it.h - startup_stm32f042x6.s) - - + Inc/stm32f0xx_it.h) +set(ASM_SOURCES ${STARTUP}) -add_executable(${EXECUTABLE} ${C_SOURCES}) +add_executable(${EXECUTABLE} ${C_SOURCES} ${C_HEADERS} ${ASM_SOURCES}) +#This is the whol tick to handle the assenbl compiling. +#We can't use arm-non-eabi-as because it can onaly hande macros. +#So this Varible makes that whne the asembly compiling is called the -x assembler-with-cpp flag is used target_compile_options(${EXECUTABLE} PRIVATE $<$:-x assembler-with-cpp ${ASM_FLAGS}> ) target_compile_options(${EXECUTABLE} PRIVATE - -mcpu=cortex-m0 + ${CPU_MCU} -mthumb -Wall -fdata-sections @@ -66,15 +76,15 @@ target_include_directories(${EXECUTABLE} PRIVATE Drivers/CMSIS/Include) target_link_options(${EXECUTABLE} PRIVATE - -mcpu=cortex-m0 - -mthumb - -specs=nano.specs - -T${CMAKE_SOURCE_DIR}/STM32F042K6Tx_FLASH.ld - -lc - -lm - -lnosys - -Wl,-Map=${PROJECT_NAME}.map,--cref - -Wl,--gc-sections) + ${CPU_MCU} + -mthumb + -specs=nano.specs + -T${CMAKE_SOURCE_DIR}/${LINKER} + -lc + -lm + -lnosys + -Wl,-Map=${PROJECT_NAME}.map,--cref + -Wl,--gc-sections) add_custom_command(TARGET ${EXECUTABLE} POST_BUILD diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeCache.txt b/bsl/cmakeLowLayer/build/CMakeCache.txt similarity index 97% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeCache.txt rename to bsl/cmakeLowLayer/build/CMakeCache.txt index b9812ac..ecd25d8 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeCache.txt +++ b/bsl/cmakeLowLayer/build/CMakeCache.txt @@ -1,5 +1,5 @@ # This is the CMakeCache file. -# For build in directory: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +# For build in directory: /home/key/github/KED/bsl/cmakeLowLayer/build # It was generated by CMake: /usr/bin/cmake # You can edit this file to change values found and used by cmake. # If you do not want to change any of the values, simply exit the editor. @@ -227,10 +227,10 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE //Value Computed by CMake -refOvenTest_BINARY_DIR:STATIC=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build //Value Computed by CMake -refOvenTest_SOURCE_DIR:STATIC=/home/key/Git/KED/bsl/cmakeLowLayer +refOvenTest_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer ######################## @@ -257,7 +257,7 @@ CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/github/KED/bsl/cmakeLowLayer/build //Major version of cmake used to create the current loaded cache CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 //Minor version of cmake used to create the current loaded cache @@ -330,7 +330,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL= //Source directory with the top level CMakeLists.txt file for this // project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/Git/KED/bsl/cmakeLowLayer +CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/github/KED/bsl/cmakeLowLayer //Install .so files without execute permission. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER @@ -388,7 +388,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STRIP CMAKE_STRIP-ADVANCED:INTERNAL=1 //uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname +CMAKE_UNAME:INTERNAL=/bin/uname //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeASMCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeASMCompiler.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeCCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeCCompiler.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeSystem.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeSystem.cmake similarity index 51% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeSystem.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeSystem.cmake index 4ce0c6c..eac9998 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CMakeSystem.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CMakeSystem.cmake @@ -1,13 +1,13 @@ -set(CMAKE_HOST_SYSTEM "Linux-4.19.0-17-amd64") +set(CMAKE_HOST_SYSTEM "Linux-5.8.0-0.bpo.2-amd64") set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "4.19.0-17-amd64") +set(CMAKE_HOST_SYSTEM_VERSION "5.8.0-0.bpo.2-amd64") set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") -set(CMAKE_SYSTEM "Linux-4.19.0-17-amd64") +set(CMAKE_SYSTEM "Linux-5.8.0-0.bpo.2-amd64") set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "4.19.0-17-amd64") +set(CMAKE_SYSTEM_VERSION "5.8.0-0.bpo.2-amd64") set(CMAKE_SYSTEM_PROCESSOR "x86_64") set(CMAKE_CROSSCOMPILING "FALSE") diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp b/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp rename to bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeDirectoryInformation.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeDirectoryInformation.cmake similarity index 75% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeDirectoryInformation.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/CMakeDirectoryInformation.cmake index a26a0f8..77686e2 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.13 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/KED/bsl/cmakeLowLayer") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild") +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) diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeOutput.log b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log similarity index 73% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeOutput.log rename to bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log index f21516c..42caa37 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeOutput.log +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log @@ -1,4 +1,4 @@ -The system is: Linux - 4.19.0-17-amd64 - x86_64 +The system is: Linux - 5.8.0-0.bpo.2-amd64 - x86_64 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler: /usr/bin/cc Build flags: @@ -10,7 +10,7 @@ The output was: Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" -The C compiler identification is GNU, found in "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdC/a.out" +The C compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdC/a.out" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /usr/bin/c++ @@ -23,33 +23,33 @@ The output was: Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" -The CXX compiler identification is GNU, found in "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/3.13.4/CompilerIdCXX/a.out" +The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/3.13.4/CompilerIdCXX/a.out" Determining if the C compiler works passed with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_fd06d/fast" -/usr/bin/make -f CMakeFiles/cmTC_fd06d.dir/build.make CMakeFiles/cmTC_fd06d.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_fd06d.dir/testCCompiler.c.o -/usr/bin/cc -o CMakeFiles/cmTC_fd06d.dir/testCCompiler.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_fd06d -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd06d.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_fd06d.dir/testCCompiler.c.o -o cmTC_fd06d -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_32ffe/fast" +/usr/bin/make -f CMakeFiles/cmTC_32ffe.dir/build.make CMakeFiles/cmTC_32ffe.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_32ffe +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32ffe.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_32ffe.dir/testCCompiler.c.o -o cmTC_32ffe +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/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp - -Run Build Command:"/usr/bin/make" "cmTC_0fe80/fast" -/usr/bin/make -f CMakeFiles/cmTC_0fe80.dir/build.make CMakeFiles/cmTC_0fe80.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -o CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c -Linking C executable cmTC_0fe80 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0fe80.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -o cmTC_0fe80 +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_58136/fast" +/usr/bin/make -f CMakeFiles/cmTC_58136.dir/build.make CMakeFiles/cmTC_58136.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_58136 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58136.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -o cmTC_58136 Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper @@ -61,24 +61,24 @@ Thread model: posix gcc version 8.3.0 (Debian 8.3.0-6) COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0fe80' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdQiDsv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_0fe80 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0fe80' '-mtune=generic' '-march=x86-64' -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_58136' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvC1mPF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_58136 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_58136' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_0fe80/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_0fe80.dir/build.make CMakeFiles/cmTC_0fe80.dir/build] - ignore line: [make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] - ignore line: [Linking C executable cmTC_0fe80] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0fe80.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -o cmTC_0fe80 ] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_58136/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_58136.dir/build.make CMakeFiles/cmTC_58136.dir/build] + ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_58136] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58136.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -o cmTC_58136 ] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] @@ -90,13 +90,13 @@ Parsed C implicit link information from above output: ignore line: [gcc version 8.3.0 (Debian 8.3.0-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0fe80' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdQiDsv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_0fe80 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_58136' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvC1mPF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_58136 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] arg [/usr/lib/gcc/x86_64-linux-gnu/8/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccdQiDsv.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccvC1mPF.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -111,7 +111,7 @@ Parsed C implicit link information from above output: arg [/lib64/ld-linux-x86-64.so.2] ==> ignore arg [-pie] ==> ignore arg [-o] ==> ignore - arg [cmTC_0fe80] ==> ignore + arg [cmTC_58136] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o] ==> ignore @@ -123,7 +123,7 @@ Parsed C implicit link information from above output: arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] - arg [CMakeFiles/cmTC_0fe80.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_58136.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -153,17 +153,17 @@ Parsed C implicit link information from above output: Detecting C [-std=c11] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_74f7f/fast" -/usr/bin/make -f CMakeFiles/cmTC_74f7f.dir/build.make CMakeFiles/cmTC_74f7f.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_74f7f.dir/feature_tests.c.o -/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_74f7f.dir/feature_tests.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.c -Linking C executable cmTC_74f7f -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_74f7f.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_74f7f.dir/feature_tests.c.o -o cmTC_74f7f -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_13fb7/fast" +/usr/bin/make -f CMakeFiles/cmTC_13fb7.dir/build.make CMakeFiles/cmTC_13fb7.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_13fb7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_13fb7.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_13fb7.dir/feature_tests.c.o -o cmTC_13fb7 +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: C_FEATURE:1c_function_prototypes @@ -173,17 +173,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting C [-std=c99] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_7ae08/fast" -/usr/bin/make -f CMakeFiles/cmTC_7ae08.dir/build.make CMakeFiles/cmTC_7ae08.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_7ae08.dir/feature_tests.c.o -/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_7ae08.dir/feature_tests.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.c -Linking C executable cmTC_7ae08 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ae08.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_7ae08.dir/feature_tests.c.o -o cmTC_7ae08 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_a0d31/fast" +/usr/bin/make -f CMakeFiles/cmTC_a0d31.dir/build.make CMakeFiles/cmTC_a0d31.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_a0d31 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0d31.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_a0d31.dir/feature_tests.c.o -o cmTC_a0d31 +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: C_FEATURE:1c_function_prototypes @@ -193,17 +193,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting C [-std=c90] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_86180/fast" -/usr/bin/make -f CMakeFiles/cmTC_86180.dir/build.make CMakeFiles/cmTC_86180.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_86180.dir/feature_tests.c.o -/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_86180.dir/feature_tests.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.c -Linking C executable cmTC_86180 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86180.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_86180.dir/feature_tests.c.o -o cmTC_86180 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_2882a/fast" +/usr/bin/make -f CMakeFiles/cmTC_2882a.dir/build.make CMakeFiles/cmTC_2882a.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_2882a.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_2882a.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_2882a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2882a.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_2882a.dir/feature_tests.c.o -o cmTC_2882a +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: C_FEATURE:1c_function_prototypes @@ -211,30 +211,30 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Feature record: C_FEATURE:0c_static_assert Feature record: C_FEATURE:0c_variadic_macros Determining if the CXX compiler works passed with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_32b53/fast" -/usr/bin/make -f CMakeFiles/cmTC_32b53.dir/build.make CMakeFiles/cmTC_32b53.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_32b53.dir/testCXXCompiler.cxx.o -/usr/bin/c++ -o CMakeFiles/cmTC_32b53.dir/testCXXCompiler.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_32b53 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32b53.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_32b53.dir/testCXXCompiler.cxx.o -o cmTC_32b53 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_fe116/fast" +/usr/bin/make -f CMakeFiles/cmTC_fe116.dir/build.make CMakeFiles/cmTC_fe116.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_fe116 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fe116.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_fe116.dir/testCXXCompiler.cxx.o -o cmTC_fe116 +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/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp - -Run Build Command:"/usr/bin/make" "cmTC_71054/fast" -/usr/bin/make -f CMakeFiles/cmTC_71054.dir/build.make CMakeFiles/cmTC_71054.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -o CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp -Linking CXX executable cmTC_71054 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_71054.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_71054 +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_a97e6/fast" +/usr/bin/make -f CMakeFiles/cmTC_a97e6.dir/build.make CMakeFiles/cmTC_a97e6.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_a97e6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a97e6.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a97e6 Using built-in specs. COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper @@ -246,24 +246,24 @@ Thread model: posix gcc version 8.3.0 (Debian 8.3.0-6) COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_71054' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/cczRDNQX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_71054 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_71054' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHytmsg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_a97e6 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_71054/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_71054.dir/build.make CMakeFiles/cmTC_71054.dir/build] - ignore line: [make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Linking CXX executable cmTC_71054] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_71054.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_71054 ] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_a97e6/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_a97e6.dir/build.make CMakeFiles/cmTC_a97e6.dir/build] + ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_a97e6] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a97e6.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a97e6 ] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/c++] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] @@ -275,13 +275,13 @@ Parsed CXX implicit link information from above output: ignore line: [gcc version 8.3.0 (Debian 8.3.0-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/8/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/8/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_71054' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/cczRDNQX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_71054 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a97e6' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/8/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHytmsg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_a97e6 /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/8 -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/8/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/8/../../.. CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/8/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crtn.o] arg [/usr/lib/gcc/x86_64-linux-gnu/8/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cczRDNQX.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccHytmsg.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -296,7 +296,7 @@ Parsed CXX implicit link information from above output: arg [/lib64/ld-linux-x86-64.so.2] ==> ignore arg [-pie] ==> ignore arg [-o] ==> ignore - arg [cmTC_71054] ==> ignore + arg [cmTC_a97e6] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/../../../x86_64-linux-gnu/crti.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/8/crtbeginS.o] ==> ignore @@ -308,7 +308,7 @@ Parsed CXX implicit link information from above output: arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/x86_64-linux-gnu/8/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/8/../../..] - arg [CMakeFiles/cmTC_71054.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_a97e6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] @@ -334,17 +334,17 @@ Parsed CXX implicit link information from above output: Detecting CXX [-std=c++2a] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_8aa2b/fast" -/usr/bin/make -f CMakeFiles/cmTC_8aa2b.dir/build.make CMakeFiles/cmTC_8aa2b.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_8aa2b.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++2a -o CMakeFiles/cmTC_8aa2b.dir/feature_tests.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_8aa2b -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aa2b.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_8aa2b.dir/feature_tests.cxx.o -o cmTC_8aa2b -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_a38f4/fast" +/usr/bin/make -f CMakeFiles/cmTC_a38f4.dir/build.make CMakeFiles/cmTC_a38f4.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++2a -o CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_a38f4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a38f4.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_a38f4.dir/feature_tests.cxx.o -o cmTC_a38f4 +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers @@ -407,17 +407,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting CXX [-std=c++17] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_93f94/fast" -/usr/bin/make -f CMakeFiles/cmTC_93f94.dir/build.make CMakeFiles/cmTC_93f94.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_93f94.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++17 -o CMakeFiles/cmTC_93f94.dir/feature_tests.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_93f94 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_93f94.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_93f94.dir/feature_tests.cxx.o -o cmTC_93f94 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_8de3b/fast" +/usr/bin/make -f CMakeFiles/cmTC_8de3b.dir/build.make CMakeFiles/cmTC_8de3b.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++17 -o CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_8de3b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8de3b.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_8de3b.dir/feature_tests.cxx.o -o cmTC_8de3b +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers @@ -480,17 +480,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting CXX [-std=c++14] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_f4a78/fast" -/usr/bin/make -f CMakeFiles/cmTC_f4a78.dir/build.make CMakeFiles/cmTC_f4a78.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_f4a78.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_f4a78.dir/feature_tests.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_f4a78 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f4a78.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_f4a78.dir/feature_tests.cxx.o -o cmTC_f4a78 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_a8c60/fast" +/usr/bin/make -f CMakeFiles/cmTC_a8c60.dir/build.make CMakeFiles/cmTC_a8c60.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_a8c60 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8c60.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_a8c60.dir/feature_tests.cxx.o -o cmTC_a8c60 +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers @@ -553,17 +553,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting CXX [-std=c++11] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_46b4d/fast" -/usr/bin/make -f CMakeFiles/cmTC_46b4d.dir/build.make CMakeFiles/cmTC_46b4d.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_46b4d.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_46b4d.dir/feature_tests.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_46b4d -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_46b4d.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_46b4d.dir/feature_tests.cxx.o -o cmTC_46b4d -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Run Build Command:"/usr/bin/make" "cmTC_58b53/fast" +/usr/bin/make -f CMakeFiles/cmTC_58b53.dir/build.make CMakeFiles/cmTC_58b53.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_58b53 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58b53.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_58b53.dir/feature_tests.cxx.o -o cmTC_58b53 +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers @@ -626,17 +626,17 @@ make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMake Detecting CXX [-std=c++98] compiler features compiled with the following output: -Change Dir: /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp - -Run Build Command:"/usr/bin/make" "cmTC_bddc3/fast" -/usr/bin/make -f CMakeFiles/cmTC_bddc3.dir/build.make CMakeFiles/cmTC_bddc3.dir/build -make[1]: Entering directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_bddc3.dir/feature_tests.cxx.o -/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_bddc3.dir/feature_tests.cxx.o -c /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_bddc3 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bddc3.dir/link.txt --verbose=1 -/usr/bin/c++ CMakeFiles/cmTC_bddc3.dir/feature_tests.cxx.o -o cmTC_bddc3 -make[1]: Leaving directory '/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/CMakeTmp' +Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_b631e/fast" +/usr/bin/make -f CMakeFiles/cmTC_b631e.dir/build.make CMakeFiles/cmTC_b631e.dir/build +make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_b631e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b631e.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_b631e.dir/feature_tests.cxx.o -o cmTC_b631e +make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..0b8551d --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" + "CMakeFiles/3.13.4/CMakeCCompiler.cmake" + "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.13.4/CMakeSystem.cmake" + "CMakeFiles/feature_tests.c" + "CMakeFiles/feature_tests.cxx" + "/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in" + "/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake" + "/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.13/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.13/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.13/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.13/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.13/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineASMCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.13/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.13/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.13/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.13/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.13/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.13/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.13/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.13/Modules/CMakeTestASMCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.13/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.13/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-ASM.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-C-FeatureTests.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.13/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.13/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.13/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.13/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.13.4/CMakeSystem.cmake" + "CMakeFiles/3.13.4/CMakeCCompiler.cmake" + "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.13.4/CMakeCCompiler.cmake" + "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" + ) diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile2 b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 similarity index 86% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile2 rename to bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 index 47cddd6..87059e6 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile2 +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 @@ -59,10 +59,10 @@ RM = /usr/bin/cmake -E remove -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/key/Git/KED/bsl/cmakeLowLayer +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build #============================================================================= # Target rules for target CMakeFiles/refOvenTest.out.dir @@ -71,7 +71,7 @@ CMAKE_BINARY_DIR = /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild CMakeFiles/refOvenTest.out.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/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target refOvenTest.out" + @$(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,7,8,9,10 "Built target refOvenTest.out" .PHONY : CMakeFiles/refOvenTest.out.dir/all # Include target in all. @@ -81,9 +81,9 @@ 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/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles 10 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 10 $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 .PHONY : CMakeFiles/refOvenTest.out.dir/rule # Convenience name for target. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..232ba46 --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.dir diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/cmake.check_cache b/bsl/cmakeLowLayer/build/CMakeFiles/cmake.check_cache similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/cmake.check_cache rename to bsl/cmakeLowLayer/build/CMakeFiles/cmake.check_cache diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.bin b/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.bin rename to bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.bin diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.c b/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.c rename to bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx b/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/feature_tests.cxx rename to bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/progress.marks rename to bsl/cmakeLowLayer/build/CMakeFiles/progress.marks diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/C.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/C.includecache rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/ASM.includecache diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache new file mode 100644 index 0000000..93bcccd --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/C.includecache @@ -0,0 +1,164 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../Drivers/CMSIS/Include/cmsis_armcc.h + +../Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../Drivers/CMSIS/Include/cmsis_gcc.h + +../Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../Drivers/CMSIS/Include/cmsis_version.h + +../Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../Drivers/CMSIS/Include/cmsis_compiler.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Inc/main.h +stm32f0xx_ll_crs.h +../Inc/stm32f0xx_ll_crs.h +stm32f0xx_ll_rcc.h +../Inc/stm32f0xx_ll_rcc.h +stm32f0xx_ll_bus.h +../Inc/stm32f0xx_ll_bus.h +stm32f0xx_ll_system.h +../Inc/stm32f0xx_ll_system.h +stm32f0xx_ll_exti.h +../Inc/stm32f0xx_ll_exti.h +stm32f0xx_ll_cortex.h +../Inc/stm32f0xx_ll_cortex.h +stm32f0xx_ll_utils.h +../Inc/stm32f0xx_ll_utils.h +stm32f0xx_ll_pwr.h +../Inc/stm32f0xx_ll_pwr.h +stm32f0xx_ll_dma.h +../Inc/stm32f0xx_ll_dma.h +stm32f0xx_ll_gpio.h +../Inc/stm32f0xx_ll_gpio.h +stm32_assert.h +../Inc/stm32_assert.h + +../Inc/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c +main.h +/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h + diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake new file mode 100644 index 0000000..8a2f70a --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake @@ -0,0 +1,76 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "ASM" + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_ASM + "/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o" + ) +set(CMAKE_ASM_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_ASM + "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_ASM_TARGET_INCLUDE_PATH + "../Inc" + "../Drivers/STM32F0xx_HAL_Driver/Inc" + "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../Drivers/CMSIS/Include" + ) +set(CMAKE_DEPENDS_CHECK_C + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/main.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/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 + "../Inc" + "../Drivers/STM32F0xx_HAL_Driver/Inc" + "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../Drivers/CMSIS/Include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make similarity index 66% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/build.make rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make index 38a85fb..8395703 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/build.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -43,10 +43,10 @@ RM = /usr/bin/cmake -E remove -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/key/Git/KED/bsl/cmakeLowLayer +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build # Include any dependencies generated for this target. include CMakeFiles/refOvenTest.out.dir/depend.make @@ -59,112 +59,112 @@ include CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Src/main.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/refOvenTest.out.dir/Src/main.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/main.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/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 CMakeFiles/refOvenTest.out.dir/Src/main.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/main.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c CMakeFiles/refOvenTest.out.dir/Src/main.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/main.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Src/main.c > CMakeFiles/refOvenTest.out.dir/Src/main.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c > CMakeFiles/refOvenTest.out.dir/Src/main.c.i CMakeFiles/refOvenTest.out.dir/Src/main.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/main.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Src/main.c -o CMakeFiles/refOvenTest.out.dir/Src/main.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c -o CMakeFiles/refOvenTest.out.dir/Src/main.c.s CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/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 CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c -o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s + /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/refOvenTest.out.dir/Src/stm32f0xx_it.c.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/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_6) "Building C object CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c -o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s + /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/refOvenTest.out.dir/Src/system_stm32f0xx.c.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: CMakeFiles/refOvenTest.out.dir/flags.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s -CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o: CMakeFiles/refOvenTest.out.dir/flags.make -CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o: ../startup_stm32f042x6.s - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building ASM object CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o" - /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o -c /home/key/Git/KED/bsl/cmakeLowLayer/startup_stm32f042x6.s +CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o: CMakeFiles/refOvenTest.out.dir/flags.make +CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building ASM object CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o" + /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s # Object files for target refOvenTest.out refOvenTest_out_OBJECTS = \ @@ -176,7 +176,7 @@ refOvenTest_out_OBJECTS = \ "CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o" \ "CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" \ "CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" \ -"CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o" +"CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o" # External object files for target refOvenTest.out refOvenTest_out_EXTERNAL_OBJECTS = @@ -189,10 +189,10 @@ refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -refOvenTest.out: CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking C executable refOvenTest.out" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking C executable refOvenTest.out" $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE) arm-none-eabi-size refOvenTest.out arm-none-eabi-objcopy -O ihex refOvenTest.out refOvenTest.hex @@ -208,6 +208,6 @@ CMakeFiles/refOvenTest.out.dir/clean: .PHONY : CMakeFiles/refOvenTest.out.dir/clean CMakeFiles/refOvenTest.out.dir/depend: - cd /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/KED/bsl/cmakeLowLayer /home/key/Git/KED/bsl/cmakeLowLayer /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR) + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/refOvenTest.out.dir/depend diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake similarity index 92% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake index 8b0e062..75e3a1f 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake @@ -7,7 +7,7 @@ file(REMOVE_RECURSE "CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o" "CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" "CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" - "CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o" + "CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o" "refOvenTest.out.pdb" "refOvenTest.out" ) diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.internal b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal similarity index 89% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.internal rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal index 8875fa8..6dfaa90 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.internal +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.internal @@ -1,8 +1,8 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o - /home/key/Git/KED/bsl/cmakeLowLayer/startup_stm32f042x6.s +CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o + /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -16,7 +16,7 @@ CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_ext ../Drivers/CMSIS/Include/core_cm0.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h ../Inc/stm32_assert.h - /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -31,7 +31,7 @@ CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpi ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h ../Inc/stm32_assert.h - /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -45,7 +45,7 @@ CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr ../Drivers/CMSIS/Include/core_cm0.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h - /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -59,7 +59,7 @@ CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc ../Drivers/CMSIS/Include/core_cm0.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../Inc/stm32_assert.h - /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -75,7 +75,7 @@ CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_uti ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../Inc/stm32_assert.h - /home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c CMakeFiles/refOvenTest.out.dir/Src/main.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -99,7 +99,7 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h ../Inc/main.h ../Inc/stm32_assert.h - /home/key/Git/KED/bsl/cmakeLowLayer/Src/main.c + /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -124,7 +124,7 @@ CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o ../Inc/main.h ../Inc/stm32_assert.h ../Inc/stm32f0xx_it.h - /home/key/Git/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c + /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -136,4 +136,4 @@ CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o ../Drivers/CMSIS/Include/cmsis_iccarm.h ../Drivers/CMSIS/Include/cmsis_version.h ../Drivers/CMSIS/Include/core_cm0.h - /home/key/Git/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c + /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make similarity index 99% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.make rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make index 0e0eb4a..eb8ebcb 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/depend.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/depend.make @@ -1,7 +1,7 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o: ../startup_stm32f042x6.s +CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make similarity index 61% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/flags.make rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make index 2c45268..9ed0601 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -7,11 +7,11 @@ ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-section ASM_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 -ASM_INCLUDES = -I/home/key/Git/KED/bsl/cmakeLowLayer/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include +ASM_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 C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -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/Git/KED/bsl/cmakeLowLayer/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include +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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt new file mode 100644 index 0000000..b848334 --- /dev/null +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/arm-none-eabi-gcc -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 CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o -o refOvenTest.out diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/progress.make rename to bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make diff --git a/bsl/cmakeLowLayer/cmakeBuild/Makefile b/bsl/cmakeLowLayer/build/Makefile similarity index 95% rename from bsl/cmakeLowLayer/cmakeBuild/Makefile rename to bsl/cmakeLowLayer/build/Makefile index b27328f..2455ae2 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/Makefile +++ b/bsl/cmakeLowLayer/build/Makefile @@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/key/Git/KED/bsl/cmakeLowLayer +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build #============================================================================= # Targets provided globally by CMake. @@ -80,9 +80,9 @@ edit_cache/fast: edit_cache # The main all target all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/progress.marks + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks $(MAKE) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 .PHONY : all # The main clean target @@ -339,14 +339,14 @@ Src/system_stm32f0xx.c.s: $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s .PHONY : Src/system_stm32f0xx.c.s -startup_stm32f042x6.o: startup_stm32f042x6.s.o +startup/startup_stm32f042x6.o: startup/startup_stm32f042x6.s.o -.PHONY : startup_stm32f042x6.o +.PHONY : startup/startup_stm32f042x6.o # target to build an object file -startup_stm32f042x6.s.o: - $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o -.PHONY : startup_stm32f042x6.s.o +startup/startup_stm32f042x6.s.o: + $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o +.PHONY : startup/startup_stm32f042x6.s.o # Help Target help: @@ -381,7 +381,7 @@ help: @echo "... Src/system_stm32f0xx.o" @echo "... Src/system_stm32f0xx.i" @echo "... Src/system_stm32f0xx.s" - @echo "... startup_stm32f042x6.o" + @echo "... startup/startup_stm32f042x6.o" .PHONY : help diff --git a/bsl/cmakeLowLayer/cmakeBuild/cmake_install.cmake b/bsl/cmakeLowLayer/build/cmake_install.cmake similarity index 89% rename from bsl/cmakeLowLayer/cmakeBuild/cmake_install.cmake rename to bsl/cmakeLowLayer/build/cmake_install.cmake index b5c8c0d..7ea4cc1 100644 --- a/bsl/cmakeLowLayer/cmakeBuild/cmake_install.cmake +++ b/bsl/cmakeLowLayer/build/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/key/Git/KED/bsl/cmakeLowLayer +# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) @@ -45,5 +45,5 @@ endif() string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/${CMAKE_INSTALL_MANIFEST}" +file(WRITE "/home/key/github/KED/bsl/cmakeLowLayer/build/${CMAKE_INSTALL_MANIFEST}" "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/bsl/cmakeLowLayer/cmakeBuild/refOvenTest.bin b/bsl/cmakeLowLayer/build/refOvenTest.bin similarity index 100% rename from bsl/cmakeLowLayer/cmakeBuild/refOvenTest.bin rename to bsl/cmakeLowLayer/build/refOvenTest.bin diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile.cmake b/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile.cmake deleted file mode 100644 index d075d8e..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "../CMakeLists.txt" - "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" - "CMakeFiles/3.13.4/CMakeCCompiler.cmake" - "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" - "CMakeFiles/3.13.4/CMakeSystem.cmake" - "/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake" - "/usr/share/cmake-3.13/Modules/CMakeCInformation.cmake" - "/usr/share/cmake-3.13/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake-3.13/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake-3.13/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake-3.13/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake-3.13/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake-3.13/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake-3.13/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake-3.13/Modules/Compiler/GNU-ASM.cmake" - "/usr/share/cmake-3.13/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake-3.13/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake-3.13/Modules/Compiler/GNU.cmake" - "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake-3.13/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake-3.13/Modules/Platform/Linux.cmake" - "/usr/share/cmake-3.13/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" - ) diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/TargetDirectories.txt b/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 0b6bd99..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,3 +0,0 @@ -/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/rebuild_cache.dir -/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir -/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/edit_cache.dir diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/ASM.includecache b/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/ASM.includecache deleted file mode 100644 index 3d5ddfb..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/ASM.includecache +++ /dev/null @@ -1,10 +0,0 @@ -#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) - -#IncludeRegexScan: ^.*$ - -#IncludeRegexComplain: ^$ - -#IncludeRegexTransform: - -/home/key/Git/KED/bsl/cmakeLowLayer/startup_stm32f042x6.s - diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake deleted file mode 100644 index 9b15230..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake +++ /dev/null @@ -1,76 +0,0 @@ -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - "ASM" - "C" - ) -# The set of files for implicit dependencies of each language: -set(CMAKE_DEPENDS_CHECK_ASM - "/home/key/Git/KED/bsl/cmakeLowLayer/startup_stm32f042x6.s" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o" - ) -set(CMAKE_ASM_COMPILER_ID "GNU") - -# Preprocessor definitions for this target. -set(CMAKE_TARGET_DEFINITIONS_ASM - "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_ASM_TARGET_INCLUDE_PATH - "../Inc" - "../Drivers/STM32F0xx_HAL_Driver/Inc" - "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" - "../Drivers/CMSIS/Include" - ) -set(CMAKE_DEPENDS_CHECK_C - "/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Src/main.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Src/main.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o" - "/home/key/Git/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/Git/KED/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/Src/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 - "../Inc" - "../Drivers/STM32F0xx_HAL_Driver/Inc" - "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" - "../Drivers/CMSIS/Include" - ) - -# Targets to which this target links. -set(CMAKE_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/link.txt b/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/link.txt deleted file mode 100644 index 7fc00f4..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/CMakeFiles/refOvenTest.out.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/arm-none-eabi-gcc -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/Git/KED/bsl/cmakeLowLayer/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/refOvenTest.out.dir/startup_stm32f042x6.s.o -o refOvenTest.out diff --git a/bsl/cmakeLowLayer/cmakeBuild/copare.txt b/bsl/cmakeLowLayer/cmakeBuild/copare.txt deleted file mode 100644 index 81edb62..0000000 --- a/bsl/cmakeLowLayer/cmakeBuild/copare.txt +++ /dev/null @@ -1,2 +0,0 @@ -arm-none-eabi-gcc -c -mcpu=cortex-m0 -mthumb -DUSE_FULL_LL_DRIVER -DSTM32F042x6 -DHSE_VALUE=8000000 -DHSE_STARTUP_TIMEOUT=100 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DHSI_VALUE=8000000 -DLSI_VALUE=40000 -DVDD_VALUE=3300 -DPREFETCH_ENABLE=1 -DINSTRUCTION_CACHE_ENABLE=0 -DDATA_CACHE_ENABLE=0 -IInc -IDrivers/STM32F0xx_HAL_Driver/Inc -IDrivers/CMSIS/Device/ST/STM32F0xx/Include -IDrivers/CMSIS/Include -Og -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/main.d" -Wa,-a,-ad,-alms=build/main.lst Src/main.c -o build/main.o -/usr/bin/cc -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 -I/home/key/Git/KED/bsl/cmakeLowLayer/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -mcpu=cortex-m0 -Wall -fdata-sections -ffunction-sections -o CMakeFiles/refOvenTest.out.dir/Src/main.c.o -c /home/key/Git/KED/bsl/cmakeLowLayer/Src/main.c diff --git a/bsl/cmakeLowLayer/cmakeLowLayer.ioc b/bsl/cmakeLowLayer/cmakeLowLayer.ioc deleted file mode 100644 index 6771ed3..0000000 --- a/bsl/cmakeLowLayer/cmakeLowLayer.ioc +++ /dev/null @@ -1,69 +0,0 @@ -#MicroXplorer Configuration settings - do not modify -File.Version=6 -GPIO.groupedBy= -KeepUserPlacement=false -Mcu.Family=STM32F0 -Mcu.IP0=NVIC -Mcu.IP1=RCC -Mcu.IP2=SYS -Mcu.IPNb=3 -Mcu.Name=STM32F042K(4-6)Tx -Mcu.Package=LQFP32 -Mcu.Pin0=PB3 -Mcu.Pin1=VP_SYS_VS_Systick -Mcu.PinsNb=2 -Mcu.ThirdPartyNb=0 -Mcu.UserConstants= -Mcu.UserName=STM32F042K6Tx -MxCube.Version=6.3.0 -MxDb.Version=DB.6.0.30 -NVIC.ForceEnableDMAVector=true -NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false -NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:true\:false\:false -NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:true\:false\:false -NVIC.SVC_IRQn=true\:0\:0\:false\:false\:true\:false\:false -NVIC.SysTick_IRQn=true\:3\:0\:false\:false\:true\:false\:true -PB3.GPIOParameters=GPIO_Label -PB3.GPIO_Label=LED_G -PB3.Locked=true -PB3.Signal=GPIO_Output -PinOutPanel.RotationAngle=0 -ProjectManager.AskForMigrate=true -ProjectManager.BackupPrevious=false -ProjectManager.CompilerOptimize=6 -ProjectManager.ComputerToolchain=false -ProjectManager.CoupleFile=false -ProjectManager.CustomerFirmwarePackage= -ProjectManager.DefaultFWLocation=true -ProjectManager.DeletePrevious=true -ProjectManager.DeviceId=STM32F042K6Tx -ProjectManager.FirmwarePackage=STM32Cube FW_F0 V1.11.3 -ProjectManager.FreePins=false -ProjectManager.HalAssertFull=false -ProjectManager.HeapSize=0x200 -ProjectManager.KeepUserCode=true -ProjectManager.LastFirmware=true -ProjectManager.LibraryCopy=1 -ProjectManager.MainLocation=Src -ProjectManager.NoMain=false -ProjectManager.PreviousToolchain= -ProjectManager.ProjectBuild=false -ProjectManager.ProjectFileName=cmakeLowLayer.ioc -ProjectManager.ProjectName=cmakeLowLayer -ProjectManager.RegisterCallBack= -ProjectManager.StackSize=0x400 -ProjectManager.TargetToolchain=Makefile -ProjectManager.ToolChainLocation= -ProjectManager.UnderRoot=false -ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-LL-false,2-MX_GPIO_Init-GPIO-false-LL-true -RCC.CECFreq_Value=32786.88524590164 -RCC.FamilyName=M -RCC.HSICECFreq_Value=32786.88524590164 -RCC.IPParameters=CECFreq_Value,FamilyName,HSICECFreq_Value,PLLCLKFreq_Value,PLLMCOFreq_Value,TimSysFreq_Value,VCOOutput2Freq_Value -RCC.PLLCLKFreq_Value=16000000 -RCC.PLLMCOFreq_Value=16000000 -RCC.TimSysFreq_Value=8000000 -RCC.VCOOutput2Freq_Value=8000000 -VP_SYS_VS_Systick.Mode=SysTick -VP_SYS_VS_Systick.Signal=SYS_VS_Systick -board=custom diff --git a/bsl/cmakeLowLayer/Makefile b/bsl/cmakeLowLayer/oldStmFile/Makefile similarity index 100% rename from bsl/cmakeLowLayer/Makefile rename to bsl/cmakeLowLayer/oldStmFile/Makefile diff --git a/bsl/cmakeLowLayer/build/cmakeLowLayer.bin b/bsl/cmakeLowLayer/oldStmFile/build/cmakeLowLayer.bin similarity index 100% rename from bsl/cmakeLowLayer/build/cmakeLowLayer.bin rename to bsl/cmakeLowLayer/oldStmFile/build/cmakeLowLayer.bin diff --git a/bsl/cmakeLowLayer/build/main.lst b/bsl/cmakeLowLayer/oldStmFile/build/main.lst similarity index 100% rename from bsl/cmakeLowLayer/build/main.lst rename to bsl/cmakeLowLayer/oldStmFile/build/main.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_it.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_it.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_it.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_it.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_ll_exti.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_exti.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_ll_exti.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_exti.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_ll_gpio.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_gpio.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_ll_gpio.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_gpio.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_ll_pwr.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_pwr.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_ll_pwr.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_pwr.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_ll_rcc.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_rcc.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_ll_rcc.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_rcc.lst diff --git a/bsl/cmakeLowLayer/build/stm32f0xx_ll_utils.lst b/bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_utils.lst similarity index 100% rename from bsl/cmakeLowLayer/build/stm32f0xx_ll_utils.lst rename to bsl/cmakeLowLayer/oldStmFile/build/stm32f0xx_ll_utils.lst diff --git a/bsl/cmakeLowLayer/build/system_stm32f0xx.lst b/bsl/cmakeLowLayer/oldStmFile/build/system_stm32f0xx.lst similarity index 100% rename from bsl/cmakeLowLayer/build/system_stm32f0xx.lst rename to bsl/cmakeLowLayer/oldStmFile/build/system_stm32f0xx.lst diff --git a/bsl/cmakeLowLayer/run.sh b/bsl/cmakeLowLayer/run.sh new file mode 100755 index 0000000..5455244 --- /dev/null +++ b/bsl/cmakeLowLayer/run.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +FILE=build/ +if [ -d "$FILE" ];then + echo Cmake build dorectory exists +else + cmake -S . -B build/ +fi + +cd $FILE +make -j4 +st-flash write refOvenTest.bin 0x08000000 +cd .. diff --git a/bsl/cmakeLowLayer/STM32F042K6Tx_FLASH.ld b/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld similarity index 100% rename from bsl/cmakeLowLayer/STM32F042K6Tx_FLASH.ld rename to bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld diff --git a/bsl/cmakeLowLayer/startup_stm32f042x6.s b/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s similarity index 100% rename from bsl/cmakeLowLayer/startup_stm32f042x6.s rename to bsl/cmakeLowLayer/startup/startup_stm32f042x6.s