diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..25edb36 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,81 @@ +cmake_minimum_required(VERSION 3.5) +#################################################################################################### +#VARIABLES : CMAKE +#################################################################################################### +#An exhaustive list can be found : https://cmake.org/cmake/help/latest/manual/cmake-variables.7.html + +set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") +set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_OBJCOPY "/usr/bin/arm-none-eabi-objcopy") +set(CMAKE_EXE_LINKER_FLAGS "--specs=nosys.specs") + +#################################################################################################### +#PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used. +#################################################################################################### +project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors. +set(CPP_ENTRY_HEADER ${CMAKE_SOURCE_DIR}/nucleo_f042k6) +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_SYSTEM_NAME Generic) +set(CMAKE_SYSTEM_PROCESSOR arm) +set(CMAKE_CROSSCOMPILING TRUE) +set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ?? +set(CSL_DIR bsl/csl/stm32f042) +#################################################################################################### +#VARIABLES : defined by user +#################################################################################################### +set(LINKER ${CSL_DIR}/startup/STM32F042K6Tx_FLASH.ld) +set(CPU_MCU "-mcpu=cortex-m0") +set(EXECUTABLE ${PROJECT_NAME}.out) + +#################################################################################################### +#CONFIG FILE +#################################################################################################### + +include(bsl/nucleo_f042k6/bsl_nucleo_f042k6.cmake) + +#################################################################################################### +#SUBDIRECTORIES +#################################################################################################### +add_subdirectory(bsl) + +#The order is important +list(APPEND EXTRA_LIBS sub::startup) +list(APPEND EXTRA_LIBS sub::translator) +list(APPEND EXTRA_LIBS sub::cSources) + +#################################################################################################### +#EXECUTABLE +#################################################################################################### +add_executable(${EXECUTABLE} main.cpp) +target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS}) +target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS}) +target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES}) + +#################################################################################################### +#LINKING EXECUTEABLE +#################################################################################################### +target_link_libraries(${EXECUTABLE} ${EXTRA_LIBS}) +target_link_options(${EXECUTABLE} PRIVATE ${LINKER_FLAGS}) + +#################################################################################################### +#CUSTOM COMMANDS +#################################################################################################### +add_custom_command(TARGET ${EXECUTABLE} + POST_BUILD + COMMAND arm-none-eabi-size ${EXECUTABLE}) + +add_custom_command(TARGET ${EXECUTABLE} + POST_BUILD + COMMAND arm-none-eabi-objcopy -O ihex ${EXECUTABLE} ${PROJECT_NAME}.hex + COMMAND arm-none-eabi-objcopy -O binary ${EXECUTABLE} ${PROJECT_NAME}.bin) + +#################################################################################################### +#CUSTOM Comments from dev. +#################################################################################################### +# Link For hheader dependency : https://stackoverflow.com/questions/11216408/cmake-dependencies-headers-between-apps-libraries-in-same-project +# This is one possible trick to handle the assenbly compiling. +# We can't use arm-non-eabi-as because it can onaly hande macros. +# So this bizzare Variable makes shure that whne the asembly compiling is called the -x assembler-with-cpp flag is passed +# target_compile_options(${EXECUTABLE} PRIVATE +# $<$<COMPILE_LANGUAGE:ASM>:-x assembler-with-cpp ${ASM_FLAGS}>) diff --git a/Makefile b/Makefile deleted file mode 100644 index 85a953d..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -cpp_src += $(wildcard *.cpp) -cpp_src += $(wildcard ./utils/*.cpp) -cpp_src += $(wildcard ./interfaces/*.cpp) -cpp_src += $(wildcard ./drivers/*.cpp) - -#cpp_src += $(wildcard ./communication/i2c/*.cpp) - -#c_src += $(wildcard ./algorithms/*.c) - -cpp_obj = $(cpp_src:.cpp=.o) -c_obj = $(c_src:.c=.o) -CC = g++ -CFLAGS = -Wall -pedantic -li2c -LDFLAGS = -EXEC = runtest - - -all : $(EXEC) - -$(EXEC): $(cpp_obj) $(c_obj) - $(CC) -o $@ $^ $(LDFLAGS) - -clean: - rm -rf $(c_obj) $(cpp_obj) $(EXEC) - -cleanall: - rm -rf $(c_obj) $(cpp_obj) $(EXEC) diff --git a/bsl/CMakeLists.txt b/bsl/CMakeLists.txt index 26dc6aa..9d742f0 100644 --- a/bsl/CMakeLists.txt +++ b/bsl/CMakeLists.txt @@ -1,85 +1,2 @@ -cmake_minimum_required(VERSION 3.5) -#################################################################################################### -#VARIABLES : CMAKE -#################################################################################################### -#An exhaustive list can be found : https://cmake.org/cmake/help/latest/manual/cmake-variables.7.html -#set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # Why ? Because we are using our own Linker so this will prevent Cmake to veryfy cimpilation with his Linker option -set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") -set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") -set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") -#set(CMAKE_ASM_FLAGS "-x assembler-with-cpp") #This flag is now part of a library The reason that we use arm-none-eabi-gcc is that we will invoke c before the assemly Thus the flags. -set(CMAKE_OBJCOPY "/usr/bin/arm-none-eabi-objcopy") -set(CMAKE_EXE_LINKER_FLAGS "--specs=nosys.specs") - -#################################################################################################### -#PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used. -#################################################################################################### -project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors. -set(CPP_ENTRY_HEADER ${CMAKE_SOURCE_DIR}/nucleo_f042k6) -set(CMAKE_CXX_STANDARD 17) -set(CMAKE_SYSTEM_NAME Generic) -set(CMAKE_SYSTEM_PROCESSOR arm) -set(CMAKE_CROSSCOMPILING TRUE) -set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ?? -set(CSL_DIR csl/stm32f042) -#################################################################################################### -#VARIABLES : defined by user -#################################################################################################### -set(LINKER ${CSL_DIR}/startup/STM32F042K6Tx_FLASH.ld) -set(CPU_MCU "-mcpu=cortex-m0") -set(C_FUNC c_functions) -set(CPP_FUNC cpp_functions) -set(AS_FUNC assembly_functions) -set(EXECUTABLE ${PROJECT_NAME}.out) - -#################################################################################################### -#CONFIG FILE -#################################################################################################### - -include(nucleo_f042k6/bsl_nucleo_f042k6.cmake) - -#################################################################################################### -#SUBDIRECTORIES -#################################################################################################### add_subdirectory(csl) add_subdirectory(nucleo_f042k6) -#The order is important -list(APPEND EXTRA_LIBS sub::startup) -list(APPEND EXTRA_LIBS sub::translator) -list(APPEND EXTRA_LIBS sub::cSources) - -#################################################################################################### -#EXECUTABLE -#################################################################################################### -add_executable(${EXECUTABLE} main.cpp) -target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS}) -target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS}) -target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES}) - -#################################################################################################### -#LINKING EXECUTEABLE -#################################################################################################### -target_link_libraries(${EXECUTABLE} ${EXTRA_LIBS}) -target_link_options(${EXECUTABLE} PRIVATE ${LINKER_FLAGS}) - -#################################################################################################### -#CUSTOM COMMANDS -#################################################################################################### -add_custom_command(TARGET ${EXECUTABLE} - POST_BUILD - COMMAND arm-none-eabi-size ${EXECUTABLE}) - -add_custom_command(TARGET ${EXECUTABLE} - POST_BUILD - COMMAND arm-none-eabi-objcopy -O ihex ${EXECUTABLE} ${PROJECT_NAME}.hex - COMMAND arm-none-eabi-objcopy -O binary ${EXECUTABLE} ${PROJECT_NAME}.bin) - -#################################################################################################### -#CUSTOM Comments from dev. -#################################################################################################### -# Link For hheader dependency : https://stackoverflow.com/questions/11216408/cmake-dependencies-headers-between-apps-libraries-in-same-project -# This is one possible trick to handle the assenbly compiling. -# We can't use arm-non-eabi-as because it can onaly hande macros. -# So this bizzare Variable makes shure that whne the asembly compiling is called the -x assembler-with-cpp flag is passed -# target_compile_options(${EXECUTABLE} PRIVATE -# $<$<COMPILE_LANGUAGE:ASM>:-x assembler-with-cpp ${ASM_FLAGS}>) diff --git a/bsl/main.cpp b/bsl/main.cpp deleted file mode 100644 index f26c7a6..0000000 --- a/bsl/main.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include"main.h" - -int main(void) -{ - cppHook(); - return 1; -} diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..3ba6a62 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,416 @@ +# This is the CMakeCache file. +# For build in directory: /home/key/Git/ked/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/arm-none-eabi-addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/arm-none-eabi-ar + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/arm-none-eabi-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/arm-none-eabi-ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/arm-none-eabi-nm + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/arm-none-eabi-objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=refOvenTest + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/arm-none-eabi-ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/arm-none-eabi-readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Csl_Stm32f0xx_BINARY_DIR:STATIC=/home/key/Git/ked/build/bsl/csl/stm32f042 + +//Dependencies for the target +Csl_Stm32f0xx_LIB_DEPENDS:STATIC=general;sub::drivers; + +//Value Computed by CMake +Csl_Stm32f0xx_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042 + +//Value Computed by CMake +Csl_Stm_BINARY_DIR:STATIC=/home/key/Git/ked/build/bsl/csl + +//Value Computed by CMake +Csl_Stm_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl + +//Value Computed by CMake +Drivers_BINARY_DIR:STATIC=/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers + +//Value Computed by CMake +Drivers_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042/Drivers + +//Value Computed by CMake +Startup_BINARY_DIR:STATIC=/home/key/Git/ked/build/bsl/csl/stm32f042/startup + +//Value Computed by CMake +Startup_SOURCE_DIR:STATIC=/home/key/Git/ked/bsl/csl/stm32f042/startup + +//Value Computed by CMake +refOvenTest_BINARY_DIR:STATIC=/home/key/Git/ked/build + +//Value Computed by CMake +refOvenTest_SOURCE_DIR:STATIC=/home/key/Git/ked + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/key/Git/ked/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=18 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/key/Git/ked +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=8 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.18 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.18.4/CMakeASMCompiler.cmake b/build/CMakeFiles/3.18.4/CMakeASMCompiler.cmake new file mode 100644 index 0000000..0263dc1 --- /dev/null +++ b/build/CMakeFiles/3.18.4/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_ASM_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/CMakeFiles/3.18.4/CMakeCCompiler.cmake b/build/CMakeFiles/3.18.4/CMakeCCompiler.cmake new file mode 100644 index 0000000..ff20dbf --- /dev/null +++ b/build/CMakeFiles/3.18.4/CMakeCCompiler.cmake @@ -0,0 +1,77 @@ +set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "8.3.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;gcc;c;nosys") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.18.4/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.18.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..624bce3 --- /dev/null +++ b/build/CMakeFiles/3.18.4/CMakeCXXCompiler.cmake @@ -0,0 +1,89 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "8.3.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/arm-none-eabi-ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar") +set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/arm-none-eabi/include/c++/8.3.1;/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi;/usr/lib/arm-none-eabi/include/c++/8.3.1/backward;/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;gcc;c;nosys") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..dafab10 Binary files /dev/null and b/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..d048078 Binary files /dev/null and b/build/CMakeFiles/3.18.4/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.18.4/CMakeSystem.cmake b/build/CMakeFiles/3.18.4/CMakeSystem.cmake new file mode 100644 index 0000000..1a7b45b --- /dev/null +++ b/build/CMakeFiles/3.18.4/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.0-9-amd64") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.0-9-amd64") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.10.0-9-amd64") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.0-9-amd64") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.18.4/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.18.4/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..6c0aa93 --- /dev/null +++ b/build/CMakeFiles/3.18.4/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,674 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.18.4/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.18.4/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..37c21ca --- /dev/null +++ b/build/CMakeFiles/3.18.4/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,663 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeError.log b/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..5645d73 --- /dev/null +++ b/build/CMakeFiles/CMakeError.log @@ -0,0 +1,24 @@ +Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. +Compiler: /usr/bin/arm-none-eabi-gcc +Build flags: +Id flags: + +The output was: +1 +/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +/build/newlib-kGgvwE/newlib-3.3.0/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. +Compiler: /usr/bin/arm-none-eabi-g++ +Build flags: +Id flags: + +The output was: +1 +/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/libc.a(lib_a-exit.o): in function `exit': +/build/newlib-kGgvwE/newlib-3.3.0/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit' +collect2: error: ld returned 1 exit status + + diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..3b79085 --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,371 @@ +The system is: Linux - 5.10.0-9-amd64 - x86_64 +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +arm-none-eabi-gcc (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] +Copyright (C) 2018 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/arm-none-eabi-gcc +Build flags: +Id flags: -c + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" + +The C compiler identification is GNU, found in "/home/key/Git/ked/build/CMakeFiles/3.18.4/CompilerIdC/CMakeCCompilerId.o" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/arm-none-eabi-g++ +Build flags: +Id flags: -c + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + +The CXX compiler identification is GNU, found in "/home/key/Git/ked/build/CMakeFiles/3.18.4/CompilerIdCXX/CMakeCXXCompilerId.o" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/key/Git/ked/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake cmTC_a125a/fast && /usr/bin/gmake -f CMakeFiles/cmTC_a125a.dir/build.make CMakeFiles/cmTC_a125a.dir/build +gmake[1]: Entering directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-gcc -v -o CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/arm-none-eabi-gcc +Target: arm-none-eabi +Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip +Thread model: single +gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/cc1 -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -version -o /tmp/cc0jslX2.s +GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi) + compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/arm-none-eabi/8.3.1/include + /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include +End of search list. +GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi) + compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 540051d21a901f95ab937f0fc815eb0d +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o /tmp/cc0jslX2.s +GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2 +COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ +LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' +Linking C executable cmTC_a125a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a125a.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -o cmTC_a125a +Using built-in specs. +Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs +rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence +COLLECT_GCC=/usr/bin/arm-none-eabi-gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper +Target: arm-none-eabi +Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip +Thread model: single +gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) +COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ +LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/ +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_a125a' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfxEBPv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_a125a /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_a125a' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' +gmake[1]: Leaving directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] + end of search list found + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] ==> [/usr/lib/arm-none-eabi/include] + implicit include dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/key/Git/ked/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_a125a/fast && /usr/bin/gmake -f CMakeFiles/cmTC_a125a.dir/build.make CMakeFiles/cmTC_a125a.dir/build] + ignore line: [gmake[1]: Entering directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-gcc -v -o CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-gcc] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] + ignore line: [Thread model: single] + ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/cc1 -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -version -o /tmp/cc0jslX2.s] + ignore line: [GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)] + ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)] + ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 540051d21a901f95ab937f0fc815eb0d] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o /tmp/cc0jslX2.s] + ignore line: [GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2] + ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [Linking C executable cmTC_a125a] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a125a.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o -o cmTC_a125a ] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] + ignore line: [Thread model: single] + ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_a125a' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + link line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfxEBPv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_a125a /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccfxEBPv.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_a125a] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crti.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore + arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1] + arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] + arg [CMakeFiles/cmTC_a125a.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1] + collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib] + implicit libs: [gcc;c;gcc;c;nosys] + implicit dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/key/Git/ked/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake cmTC_e85d8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e85d8.dir/build.make CMakeFiles/cmTC_e85d8.dir/build +gmake[1]: Entering directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-g++ -v -o CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/arm-none-eabi-g++ +Target: arm-none-eabi +Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip +Thread model: single +gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/cc1plus -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccMe0Ng0.s +GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi) + compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1 + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward + /usr/lib/gcc/arm-none-eabi/8.3.1/include + /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include +End of search list. +GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi) + compiled by GNU C version 10.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 2997647168e1093b6d37ca7192a93286 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccMe0Ng0.s +GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2 +COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ +LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' +Linking CXX executable cmTC_e85d8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e85d8.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_e85d8 +Using built-in specs. +Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs +rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence +COLLECT_GCC=/usr/bin/arm-none-eabi-g++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper +Target: arm-none-eabi +Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip +Thread model: single +gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) +COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ +LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/ +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e85d8' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' + /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPBrwku.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e85d8 /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e85d8' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t' +gmake[1]: Leaving directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + add: [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] + end of search list found + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward] ==> [/usr/lib/arm-none-eabi/include/c++/8.3.1/backward] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + collapse include dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] ==> [/usr/lib/arm-none-eabi/include] + implicit include dirs: [/usr/lib/arm-none-eabi/include/c++/8.3.1;/usr/lib/arm-none-eabi/include/c++/8.3.1/arm-none-eabi;/usr/lib/arm-none-eabi/include/c++/8.3.1/backward;/usr/lib/gcc/arm-none-eabi/8.3.1/include;/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed;/usr/lib/arm-none-eabi/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/key/Git/ked/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_e85d8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e85d8.dir/build.make CMakeFiles/cmTC_e85d8.dir/build] + ignore line: [gmake[1]: Entering directory '/home/key/Git/ked/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-g++ -v -o CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-g++] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] + ignore line: [Thread model: single] + ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/cc1plus -quiet -v -D__USES_INITFINI__ /usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccMe0Ng0.s] + ignore line: [GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)] + ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/sys-include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/arm-none-eabi] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include/c++/8.3.1/backward] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (15:8-2019-q3-1+b1) version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (arm-none-eabi)] + ignore line: [ compiled by GNU C version 10.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 2997647168e1093b6d37ca7192a93286] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/as -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccMe0Ng0.s] + ignore line: [GNU assembler version 2.35.2 (arm-none-eabi) using BFD version (2.35.2-2+14+b2) 2.35.2] + ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + ignore line: [Linking CXX executable cmTC_e85d8] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e85d8.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_e85d8 ] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/nosys.specs] + ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] + ignore line: [COLLECT_GCC=/usr/bin/arm-none-eabi-g++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: ../configure --build=x86_64-linux-gnu --prefix=/usr --includedir='/usr/lib/include' --mandir='/usr/lib/share/man' --infodir='/usr/lib/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --mandir=/usr/share/man --enable-languages=c,c++,lto --enable-multilib --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --enable-tls --build=x86_64-linux-gnu --target=arm-none-eabi --with-system-zlib --with-gnu-as --with-gnu-ld --with-pkgversion=15:8-2019-q3-1+b1 --without-included-gettext --prefix=/usr/lib --infodir=/usr/share/doc/gcc-arm-none-eabi/info --htmldir=/usr/share/doc/gcc-arm-none-eabi/html --pdfdir=/usr/share/doc/gcc-arm-none-eabi/pdf --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --disable-libstdc++-v3 --host=x86_64-linux-gnu --with-headers=no --without-newlib --with-multilib-list=rmprofile CFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' CXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' FFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' GCJFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' LDFLAGS=-Wl,-z,relro OBJCFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' OBJCXXFLAGS='-g -O2 -fdebug-prefix-map=/build/gcc-arm-none-eabi-zSbVfn/gcc-arm-none-eabi-8-2019-q3=. -fstack-protector-strong' INHIBIT_LIBC_CFLAGS=-DUSE_TM_CLONE_REGISTRY=0 AR_FOR_TARGET=arm-none-eabi-ar AS_FOR_TARGET=arm-none-eabi-as LD_FOR_TARGET=arm-none-eabi-ld NM_FOR_TARGET=arm-none-eabi-nm OBJDUMP_FOR_TARGET=arm-none-eabi-objdump RANLIB_FOR_TARGET=arm-none-eabi-ranlib READELF_FOR_TARGET=arm-none-eabi-readelf STRIP_FOR_TARGET=arm-none-eabi-strip] + ignore line: [Thread model: single] + ignore line: [gcc version 8.3.1 20190703 (release) [gcc-8-branch revision 273027] (15:8-2019-q3-1+b1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/8.3.1/:/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e85d8' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'] + link line: [ /usr/lib/gcc/arm-none-eabi/8.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPBrwku.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e85d8 /usr/lib/gcc/arm-none-eabi/8.3.1/crti.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/8.3.1 -L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/8.3.1/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccPBrwku.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-X] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e85d8] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crti.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtbegin.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore + arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1] + arg [-L/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] + arg [CMakeFiles/cmTC_e85d8.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [--end-group] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtend.o] ==> ignore + arg [/usr/lib/gcc/arm-none-eabi/8.3.1/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1] ==> [/usr/lib/gcc/arm-none-eabi/8.3.1] + collapse library dir [/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/lib] ==> [/usr/lib/arm-none-eabi/lib] + implicit libs: [stdc++;m;gcc;c;gcc;c;nosys] + implicit dirs: [/usr/lib/gcc/arm-none-eabi/8.3.1;/usr/lib/arm-none-eabi/lib] + implicit fwks: [] + + diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..a99dfd4 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# 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" + "../bsl/CMakeLists.txt" + "../bsl/csl/CMakeLists.txt" + "../bsl/csl/stm32f042/CMakeLists.txt" + "../bsl/csl/stm32f042/Drivers/CMakeLists.txt" + "../bsl/csl/stm32f042/Src/CMakeLists.txt" + "../bsl/csl/stm32f042/startup/CMakeLists.txt" + "../bsl/nucleo_f042k6/CMakeLists.txt" + "../bsl/nucleo_f042k6/bsl_nucleo_f042k6.cmake" + "CMakeFiles/3.18.4/CMakeASMCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.18.4/CMakeSystem.cmake" + "/usr/share/cmake-3.18/Modules/CMakeASMCompiler.cmake.in" + "/usr/share/cmake-3.18/Modules/CMakeASMInformation.cmake" + "/usr/share/cmake-3.18/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.18/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.18/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.18/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.18/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.18/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.18/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.18/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineASMCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.18/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.18/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.18/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.18/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.18/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.18/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.18/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.18/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.18/Modules/CMakeTestASMCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.18/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.18/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-ASM.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.18/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "/usr/share/cmake-3.18/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.18/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.18/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.18/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.18/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.18/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.18/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.18.4/CMakeSystem.cmake" + "CMakeFiles/3.18.4/CMakeASMCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCCompiler.cmake" + "CMakeFiles/3.18.4/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/csl/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake" + "bsl/nucleo_f042k6/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" + "bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" + "bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake" + "bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake" + "bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..94fcf6a --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,373 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/refOvenTest.out.dir/all +all: bsl/all + +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: bsl/preinstall + +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/refOvenTest.out.dir/clean +clean: bsl/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory bsl + +# Recursive "all" directory target. +bsl/all: bsl/csl/all +bsl/all: bsl/nucleo_f042k6/all + +.PHONY : bsl/all + +# Recursive "preinstall" directory target. +bsl/preinstall: bsl/csl/preinstall +bsl/preinstall: bsl/nucleo_f042k6/preinstall + +.PHONY : bsl/preinstall + +# Recursive "clean" directory target. +bsl/clean: bsl/csl/clean +bsl/clean: bsl/nucleo_f042k6/clean + +.PHONY : bsl/clean + +#============================================================================= +# Directory level rules for directory bsl/csl + +# Recursive "all" directory target. +bsl/csl/all: bsl/csl/stm32f042/all + +.PHONY : bsl/csl/all + +# Recursive "preinstall" directory target. +bsl/csl/preinstall: bsl/csl/stm32f042/preinstall + +.PHONY : bsl/csl/preinstall + +# Recursive "clean" directory target. +bsl/csl/clean: bsl/csl/stm32f042/clean + +.PHONY : bsl/csl/clean + +#============================================================================= +# Directory level rules for directory bsl/csl/stm32f042 + +# Recursive "all" directory target. +bsl/csl/stm32f042/all: bsl/csl/stm32f042/Drivers/all +bsl/csl/stm32f042/all: bsl/csl/stm32f042/startup/all +bsl/csl/stm32f042/all: bsl/csl/stm32f042/Src/all + +.PHONY : bsl/csl/stm32f042/all + +# Recursive "preinstall" directory target. +bsl/csl/stm32f042/preinstall: bsl/csl/stm32f042/Drivers/preinstall +bsl/csl/stm32f042/preinstall: bsl/csl/stm32f042/startup/preinstall +bsl/csl/stm32f042/preinstall: bsl/csl/stm32f042/Src/preinstall + +.PHONY : bsl/csl/stm32f042/preinstall + +# Recursive "clean" directory target. +bsl/csl/stm32f042/clean: bsl/csl/stm32f042/Drivers/clean +bsl/csl/stm32f042/clean: bsl/csl/stm32f042/startup/clean +bsl/csl/stm32f042/clean: bsl/csl/stm32f042/Src/clean + +.PHONY : bsl/csl/stm32f042/clean + +#============================================================================= +# Directory level rules for directory bsl/csl/stm32f042/Drivers + +# Recursive "all" directory target. +bsl/csl/stm32f042/Drivers/all: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all + +.PHONY : bsl/csl/stm32f042/Drivers/all + +# Recursive "preinstall" directory target. +bsl/csl/stm32f042/Drivers/preinstall: + +.PHONY : bsl/csl/stm32f042/Drivers/preinstall + +# Recursive "clean" directory target. +bsl/csl/stm32f042/Drivers/clean: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean + +.PHONY : bsl/csl/stm32f042/Drivers/clean + +#============================================================================= +# Directory level rules for directory bsl/csl/stm32f042/Src + +# Recursive "all" directory target. +bsl/csl/stm32f042/Src/all: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all + +.PHONY : bsl/csl/stm32f042/Src/all + +# Recursive "preinstall" directory target. +bsl/csl/stm32f042/Src/preinstall: + +.PHONY : bsl/csl/stm32f042/Src/preinstall + +# Recursive "clean" directory target. +bsl/csl/stm32f042/Src/clean: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean + +.PHONY : bsl/csl/stm32f042/Src/clean + +#============================================================================= +# Directory level rules for directory bsl/csl/stm32f042/startup + +# Recursive "all" directory target. +bsl/csl/stm32f042/startup/all: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/all + +.PHONY : bsl/csl/stm32f042/startup/all + +# Recursive "preinstall" directory target. +bsl/csl/stm32f042/startup/preinstall: + +.PHONY : bsl/csl/stm32f042/startup/preinstall + +# Recursive "clean" directory target. +bsl/csl/stm32f042/startup/clean: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean + +.PHONY : bsl/csl/stm32f042/startup/clean + +#============================================================================= +# Directory level rules for directory bsl/nucleo_f042k6 + +# Recursive "all" directory target. +bsl/nucleo_f042k6/all: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/all + +.PHONY : bsl/nucleo_f042k6/all + +# Recursive "preinstall" directory target. +bsl/nucleo_f042k6/preinstall: + +.PHONY : bsl/nucleo_f042k6/preinstall + +# Recursive "clean" directory target. +bsl/nucleo_f042k6/clean: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean + +.PHONY : bsl/nucleo_f042k6/clean + +#============================================================================= +# Target rules for target CMakeFiles/refOvenTest.out.dir + +# All Build rule for target. +CMakeFiles/refOvenTest.out.dir/all: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all +CMakeFiles/refOvenTest.out.dir/all: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/all +CMakeFiles/refOvenTest.out.dir/all: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all +CMakeFiles/refOvenTest.out.dir/all: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=13,14 "Built target refOvenTest.out" +.PHONY : CMakeFiles/refOvenTest.out.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : CMakeFiles/refOvenTest.out.dir/rule + +# Convenience name for target. +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule + +.PHONY : refOvenTest.out + +# clean rule for target. +CMakeFiles/refOvenTest.out.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean +.PHONY : CMakeFiles/refOvenTest.out.dir/clean + +#============================================================================= +# Target rules for target bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir + +# All Build rule for target. +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=5,6,7,8,9,10 "Built target Drivers" +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all + +# Build rule for subdir invocation for target. +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 6 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule + +# Convenience name for target. +Drivers: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule + +.PHONY : Drivers + +# clean rule for target. +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean + +#============================================================================= +# Target rules for target bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir + +# All Build rule for target. +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/all: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=11,12 "Built target Startup" +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/all + +# Build rule for subdir invocation for target. +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule + +# Convenience name for target. +Startup: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule + +.PHONY : Startup + +# clean rule for target. +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean + +#============================================================================= +# Target rules for target bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir + +# All Build rule for target. +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/all + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=1,2,3,4 "Built target Csl_Stm32f0xx" +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all + +# Build rule for subdir invocation for target. +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule + +# Convenience name for target. +Csl_Stm32f0xx: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule + +.PHONY : Csl_Stm32f0xx + +# clean rule for target. +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean + +#============================================================================= +# Target rules for target bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir + +# All Build rule for target. +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/all: + $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend + $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=15,16 "Built target stmTranslator" +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/all + +# Build rule for subdir invocation for target. +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule + +# Convenience name for target. +stmTranslator: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule + +.PHONY : stmTranslator + +# clean rule for target. +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean: + $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..5273ed0 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,21 @@ +/home/key/Git/ked/build/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/CMakeFiles/refOvenTest.out.dir +/home/key/Git/ked/build/bsl/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/csl/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir +/home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/rebuild_cache.dir +/home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/edit_cache.dir +/home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache b/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache new file mode 100644 index 0000000..487ddba --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache @@ -0,0 +1,172 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Inc/stm32_assert.h + +../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +stm32f0xx_ll_crs.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_crs.h +stm32f0xx_ll_rcc.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_rcc.h +stm32f0xx_ll_bus.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_bus.h +stm32f0xx_ll_system.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_system.h +stm32f0xx_ll_exti.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_exti.h +stm32f0xx_ll_cortex.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_cortex.h +stm32f0xx_ll_utils.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_utils.h +stm32f0xx_ll_pwr.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_pwr.h +stm32f0xx_ll_dma.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_dma.h +stm32f0xx_ll_gpio.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_gpio.h +stm32_assert.h +../bsl/csl/stm32f042/Inc/stm32_assert.h + +../bsl/nucleo_f042k6/bls_nucleo_f042k6.h +stm32f0xx_csl.h +../bsl/nucleo_f042k6/stm32f0xx_csl.h + +/home/key/Git/ked/main.cpp +main.h +/home/key/Git/ked/main.h + +/home/key/Git/ked/main.h +bls_nucleo_f042k6.h +/home/key/Git/ked/bls_nucleo_f042k6.h + diff --git a/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake new file mode 100644 index 0000000..1330607 --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake @@ -0,0 +1,53 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/key/Git/ked/main.cpp" "/home/key/Git/ked/build/CMakeFiles/refOvenTest.out.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "DATA_CACHE_ENABLE=0" + "HSE_STARTUP_TIMEOUT=100" + "HSE_VALUE=8000000" + "HSI_VALUE=8000000" + "INSTRUCTION_CACHE_ENABLE=0" + "LSE_STARTUP_TIMEOUT=5000" + "LSE_VALUE=32768" + "LSI_VALUE=40000" + "PREFETCH_ENABLE=1" + "STM32F042x6" + "USE_FULL_LL_DRIVER" + "VDD_VALUE=3300" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "../." + "../bsl/nucleo_f042k6" + "../bsl/nucleo_f042k6/../csl/stm32f042/Inc" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc" + "../bsl/csl/stm32f042/Src/../Inc" + "../bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc" + "../bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include" + "../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/csl/stm32f042/Drivers/CMSIS/Include" + "../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake" + "/home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake" + "/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake" + "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/refOvenTest.out.dir/build.make b/build/CMakeFiles/refOvenTest.out.dir/build.make new file mode 100644 index 0000000..938add4 --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -0,0 +1,124 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +# Include any dependencies generated for this target. +include CMakeFiles/refOvenTest.out.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/refOvenTest.out.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/refOvenTest.out.dir/flags.make + +CMakeFiles/refOvenTest.out.dir/main.cpp.o: CMakeFiles/refOvenTest.out.dir/flags.make +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/main.cpp.o" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/main.cpp.o -c /home/key/Git/ked/main.cpp + +CMakeFiles/refOvenTest.out.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/main.cpp.i" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/Git/ked/main.cpp > CMakeFiles/refOvenTest.out.dir/main.cpp.i + +CMakeFiles/refOvenTest.out.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/main.cpp.s" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/Git/ked/main.cpp -o CMakeFiles/refOvenTest.out.dir/main.cpp.s + +# Object files for target refOvenTest.out +refOvenTest_out_OBJECTS = \ +"CMakeFiles/refOvenTest.out.dir/main.cpp.o" + +# External object files for target refOvenTest.out +refOvenTest_out_EXTERNAL_OBJECTS = + +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/main.cpp.o +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make +refOvenTest.out: bsl/csl/stm32f042/startup/libStartup.a +refOvenTest.out: bsl/nucleo_f042k6/libstmTranslator.a +refOvenTest.out: bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a +refOvenTest.out: bsl/csl/stm32f042/Drivers/libDrivers.a +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE) + arm-none-eabi-size refOvenTest.out + arm-none-eabi-objcopy -O ihex refOvenTest.out refOvenTest.hex + arm-none-eabi-objcopy -O binary refOvenTest.out refOvenTest.bin + +# Rule to build all files generated by this target. +CMakeFiles/refOvenTest.out.dir/build: refOvenTest.out + +.PHONY : CMakeFiles/refOvenTest.out.dir/build + +CMakeFiles/refOvenTest.out.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake +.PHONY : CMakeFiles/refOvenTest.out.dir/clean + +CMakeFiles/refOvenTest.out.dir/depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked /home/key/Git/ked /home/key/Git/ked/build /home/key/Git/ked/build /home/key/Git/ked/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/refOvenTest.out.dir/depend + diff --git a/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake b/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake new file mode 100644 index 0000000..45bd55c --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/refOvenTest.out.dir/main.cpp.o" + "refOvenTest.out" + "refOvenTest.out.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/refOvenTest.out.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/refOvenTest.out.dir/depend.internal b/build/CMakeFiles/refOvenTest.out.dir/depend.internal new file mode 100644 index 0000000..51f7f32 --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/depend.internal @@ -0,0 +1,29 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +CMakeFiles/refOvenTest.out.dir/main.cpp.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + ../bsl/csl/stm32f042/Inc/stm32_assert.h + ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h + ../bsl/nucleo_f042k6/bls_nucleo_f042k6.h + /home/key/Git/ked/main.cpp + /home/key/Git/ked/main.h diff --git a/build/CMakeFiles/refOvenTest.out.dir/depend.make b/build/CMakeFiles/refOvenTest.out.dir/depend.make new file mode 100644 index 0000000..4fbb9b8 --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/depend.make @@ -0,0 +1,29 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Inc/stm32_assert.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../bsl/nucleo_f042k6/bls_nucleo_f042k6.h +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.cpp +CMakeFiles/refOvenTest.out.dir/main.cpp.o: ../main.h + diff --git a/build/CMakeFiles/refOvenTest.out.dir/flags.make b/build/CMakeFiles/refOvenTest.out.dir/flags.make new file mode 100644 index 0000000..729fef6 --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# compile CXX with /usr/bin/arm-none-eabi-g++ +CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +CXX_INCLUDES = -I/home/key/Git/ked/. -I/home/key/Git/ked/bsl/nucleo_f042k6 -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Inc -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc + +CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++17 + diff --git a/build/CMakeFiles/refOvenTest.out.dir/link.txt b/build/CMakeFiles/refOvenTest.out.dir/link.txt new file mode 100644 index 0000000..2332b5f --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/Git/ked/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/main.cpp.o -o refOvenTest.out bsl/csl/stm32f042/startup/libStartup.a bsl/nucleo_f042k6/libstmTranslator.a bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a bsl/csl/stm32f042/Drivers/libDrivers.a diff --git a/build/CMakeFiles/refOvenTest.out.dir/progress.make b/build/CMakeFiles/refOvenTest.out.dir/progress.make new file mode 100644 index 0000000..d92f75a --- /dev/null +++ b/build/CMakeFiles/refOvenTest.out.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 13 +CMAKE_PROGRESS_2 = 14 + diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..661c4ef --- /dev/null +++ b/build/Makefile @@ -0,0 +1,253 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named refOvenTest.out + +# Build rule for target. +refOvenTest.out: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 refOvenTest.out +.PHONY : refOvenTest.out + +# fast build rule for target. +refOvenTest.out/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build +.PHONY : refOvenTest.out/fast + +#============================================================================= +# Target rules for targets named Drivers + +# Build rule for target. +Drivers: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Drivers +.PHONY : Drivers + +# fast build rule for target. +Drivers/fast: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build +.PHONY : Drivers/fast + +#============================================================================= +# Target rules for targets named Startup + +# Build rule for target. +Startup: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Startup +.PHONY : Startup + +# fast build rule for target. +Startup/fast: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build +.PHONY : Startup/fast + +#============================================================================= +# Target rules for targets named Csl_Stm32f0xx + +# Build rule for target. +Csl_Stm32f0xx: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Csl_Stm32f0xx +.PHONY : Csl_Stm32f0xx + +# fast build rule for target. +Csl_Stm32f0xx/fast: + $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build +.PHONY : Csl_Stm32f0xx/fast + +#============================================================================= +# Target rules for targets named stmTranslator + +# Build rule for target. +stmTranslator: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 stmTranslator +.PHONY : stmTranslator + +# fast build rule for target. +stmTranslator/fast: + $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build +.PHONY : stmTranslator/fast + +main.o: main.cpp.o + +.PHONY : main.o + +# target to build an object file +main.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i + +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s + +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... Csl_Stm32f0xx" + @echo "... Drivers" + @echo "... Startup" + @echo "... refOvenTest.out" + @echo "... stmTranslator" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/CMakeFiles/progress.marks b/build/bsl/CMakeFiles/progress.marks new file mode 100644 index 0000000..8351c19 --- /dev/null +++ b/build/bsl/CMakeFiles/progress.marks @@ -0,0 +1 @@ +14 diff --git a/build/bsl/Makefile b/build/bsl/Makefile new file mode 100644 index 0000000..85bee1f --- /dev/null +++ b/build/bsl/Makefile @@ -0,0 +1,153 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/cmake_install.cmake b/build/bsl/cmake_install.cmake new file mode 100644 index 0000000..0ef4869 --- /dev/null +++ b/build/bsl/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: /home/key/Git/ked/bsl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/key/Git/ked/build/bsl/csl/cmake_install.cmake") + include("/home/key/Git/ked/build/bsl/nucleo_f042k6/cmake_install.cmake") + +endif() + diff --git a/build/bsl/csl/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/csl/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/csl/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/csl/CMakeFiles/progress.marks b/build/bsl/csl/CMakeFiles/progress.marks new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/build/bsl/csl/CMakeFiles/progress.marks @@ -0,0 +1 @@ +12 diff --git a/build/bsl/csl/Makefile b/build/bsl/csl/Makefile new file mode 100644 index 0000000..c7c7828 --- /dev/null +++ b/build/bsl/csl/Makefile @@ -0,0 +1,153 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/csl//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/csl/cmake_install.cmake b/build/bsl/csl/cmake_install.cmake new file mode 100644 index 0000000..a0e51c7 --- /dev/null +++ b/build/bsl/csl/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /home/key/Git/ked/bsl/csl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/key/Git/ked/build/bsl/csl/stm32f042/cmake_install.cmake") + +endif() + diff --git a/build/bsl/csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/csl/stm32f042/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/csl/stm32f042/CMakeFiles/progress.marks b/build/bsl/csl/stm32f042/CMakeFiles/progress.marks new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/build/bsl/csl/stm32f042/CMakeFiles/progress.marks @@ -0,0 +1 @@ +12 diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/C.includecache b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/C.includecache new file mode 100644 index 0000000..568d330 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/C.includecache @@ -0,0 +1,158 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c +stm32f0xx_ll_exti.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h +stm32_assert.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c +stm32f0xx_ll_gpio.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h +stm32f0xx_ll_bus.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h +stm32_assert.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c +stm32f0xx_ll_pwr.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h +stm32f0xx_ll_bus.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h + +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c +stm32f0xx_ll_rcc.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32_assert.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c +stm32f0xx_ll_rcc.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32f0xx_ll_utils.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h +stm32f0xx_ll_system.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h +stm32_assert.h +/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake new file mode 100644 index 0000000..cf0032f --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake @@ -0,0 +1,43 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.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 + "../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/csl/stm32f042/Drivers/CMSIS/Include" + "../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make new file mode 100644 index 0000000..627e68e --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +# Include any dependencies generated for this target. +include bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make + +# Include the progress variables for this target. +include bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/progress.make + +# Include the compile flags for this target's objects. +include bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +# Object files for target Drivers +Drivers_OBJECTS = \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + +# External object files for target Drivers +Drivers_EXTERNAL_OBJECTS = + +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make +bsl/csl/stm32f042/Drivers/libDrivers.a: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build: bsl/csl/stm32f042/Drivers/libDrivers.a + +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean: + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/clean + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked /home/key/Git/ked/bsl/csl/stm32f042/Drivers /home/key/Git/ked/build /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend + diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake new file mode 100644 index 0000000..574fcf7 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + "libDrivers.a" + "libDrivers.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/Drivers.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..25fe979 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libDrivers.a" +) diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.internal b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.internal new file mode 100644 index 0000000..e24ded7 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.internal @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + /home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make new file mode 100644 index 0000000..3c75715 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/depend.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make new file mode 100644 index 0000000..c31cf2a --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# compile C with /usr/bin/arm-none-eabi-gcc +C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +C_INCLUDES = -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc + +C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections + diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt new file mode 100644 index 0000000..cdb948a --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar qc libDrivers.a CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +/usr/bin/arm-none-eabi-ranlib libDrivers.a diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/progress.make b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/progress.make new file mode 100644 index 0000000..90fe4ee --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/progress.make @@ -0,0 +1,7 @@ +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 +CMAKE_PROGRESS_3 = 7 +CMAKE_PROGRESS_4 = 8 +CMAKE_PROGRESS_5 = 9 +CMAKE_PROGRESS_6 = 10 + diff --git a/build/bsl/csl/stm32f042/Drivers/CMakeFiles/progress.marks b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/progress.marks new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/build/bsl/csl/stm32f042/Drivers/Makefile b/build/bsl/csl/stm32f042/Drivers/Makefile new file mode 100644 index 0000000..043d40a --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/Makefile @@ -0,0 +1,319 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/csl/stm32f042/Drivers//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule +.PHONY : bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule + +# Convenience name for target. +Drivers: bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/rule + +.PHONY : Drivers + +# fast build rule for target. +Drivers/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build +.PHONY : Drivers/fast + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/build.make bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... Drivers" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/csl/stm32f042/Drivers/cmake_install.cmake b/build/bsl/csl/stm32f042/Drivers/cmake_install.cmake new file mode 100644 index 0000000..58b9bba --- /dev/null +++ b/build/bsl/csl/stm32f042/Drivers/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/Drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + diff --git a/build/bsl/csl/stm32f042/Makefile b/build/bsl/csl/stm32f042/Makefile new file mode 100644 index 0000000..1ccc5a6 --- /dev/null +++ b/build/bsl/csl/stm32f042/Makefile @@ -0,0 +1,153 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/csl/stm32f042//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/C.includecache b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/C.includecache new file mode 100644 index 0000000..d583fb8 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/C.includecache @@ -0,0 +1,176 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Inc/stm32_assert.h + +../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +stm32f0xx_ll_crs.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_crs.h +stm32f0xx_ll_rcc.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_rcc.h +stm32f0xx_ll_bus.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_bus.h +stm32f0xx_ll_system.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_system.h +stm32f0xx_ll_exti.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_exti.h +stm32f0xx_ll_cortex.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_cortex.h +stm32f0xx_ll_utils.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_utils.h +stm32f0xx_ll_pwr.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_pwr.h +stm32f0xx_ll_dma.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_dma.h +stm32f0xx_ll_gpio.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_gpio.h +stm32_assert.h +../bsl/csl/stm32f042/Inc/stm32_assert.h + +../bsl/csl/stm32f042/Inc/stm32f0xx_it.h + +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c +stm32f0xx_csl.h +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.h + +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c +stm32f0xx_csl.h +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.h +stm32f0xx_it.h +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.h + +/home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c +stm32f0xx.h +/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx.h + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake new file mode 100644 index 0000000..80d9790 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake @@ -0,0 +1,46 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o" + "/home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "DATA_CACHE_ENABLE=0" + "HSE_STARTUP_TIMEOUT=100" + "HSE_VALUE=8000000" + "HSI_VALUE=8000000" + "INSTRUCTION_CACHE_ENABLE=0" + "LSE_STARTUP_TIMEOUT=5000" + "LSE_VALUE=32768" + "LSI_VALUE=40000" + "PREFETCH_ENABLE=1" + "STM32F042x6" + "USE_FULL_LL_DRIVER" + "VDD_VALUE=3300" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../bsl/csl/stm32f042/Src/../Inc" + "../bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc" + "../bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include" + "../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/csl/stm32f042/Drivers/CMSIS/Include" + "../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make new file mode 100644 index 0000000..4fa010e --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make @@ -0,0 +1,148 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +# Include any dependencies generated for this target. +include bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.make + +# Include the progress variables for this target. +include bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/progress.make + +# Include the compile flags for this target's objects. +include bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Src/stm32f0xx_csl.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c > CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Src/stm32f0xx_it.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c > CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c -o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Src/system_stm32f0xx.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o -c /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c > CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c -o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s + +# Object files for target Csl_Stm32f0xx +Csl_Stm32f0xx_OBJECTS = \ +"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o" \ +"CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o" \ +"CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o" + +# External object files for target Csl_Stm32f0xx +Csl_Stm32f0xx_EXTERNAL_OBJECTS = + +bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o +bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o +bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o +bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make +bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C static library libCsl_Stm32f0xx.a" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_target.cmake + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Csl_Stm32f0xx.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build: bsl/csl/stm32f042/Src/libCsl_Stm32f0xx.a + +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean: + cd /home/key/Git/ked/build/bsl/csl/stm32f042/Src && $(CMAKE_COMMAND) -P CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean.cmake +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/clean + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked /home/key/Git/ked/bsl/csl/stm32f042/Src /home/key/Git/ked/build /home/key/Git/ked/build/bsl/csl/stm32f042/Src /home/key/Git/ked/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean.cmake b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean.cmake new file mode 100644 index 0000000..b7b4c5d --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o" + "CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o" + "CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o" + "libCsl_Stm32f0xx.a" + "libCsl_Stm32f0xx.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_target.cmake b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..2064d7d --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libCsl_Stm32f0xx.a" +) diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.internal b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.internal new file mode 100644 index 0000000..b9d0e87 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.internal @@ -0,0 +1,64 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + ../bsl/csl/stm32f042/Inc/stm32_assert.h + ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h + /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_csl.c +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + ../bsl/csl/stm32f042/Inc/stm32_assert.h + ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h + ../bsl/csl/stm32f042/Inc/stm32f0xx_it.h + /home/key/Git/ked/bsl/csl/stm32f042/Src/stm32f0xx_it.c +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + /home/key/Git/ked/bsl/csl/stm32f042/Src/system_stm32f0xx.c diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.make b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.make new file mode 100644 index 0000000..44c3f97 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/depend.make @@ -0,0 +1,64 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Inc/stm32_assert.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o: ../bsl/csl/stm32f042/Src/stm32f0xx_csl.c + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Inc/stm32_assert.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Inc/stm32f0xx_it.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o: ../bsl/csl/stm32f042/Src/stm32f0xx_it.c + +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o: ../bsl/csl/stm32f042/Src/system_stm32f0xx.c + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make new file mode 100644 index 0000000..ba04ac3 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# compile C with /usr/bin/arm-none-eabi-gcc +C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +C_INCLUDES = -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc + +C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/link.txt b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/link.txt new file mode 100644 index 0000000..1cac7db --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar qc libCsl_Stm32f0xx.a CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o +/usr/bin/arm-none-eabi-ranlib libCsl_Stm32f0xx.a diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/progress.make b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/progress.make new file mode 100644 index 0000000..a69a57e --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 + diff --git a/build/bsl/csl/stm32f042/Src/CMakeFiles/progress.marks b/build/bsl/csl/stm32f042/Src/CMakeFiles/progress.marks new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +10 diff --git a/build/bsl/csl/stm32f042/Src/Makefile b/build/bsl/csl/stm32f042/Src/Makefile new file mode 100644 index 0000000..96d3851 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/Makefile @@ -0,0 +1,259 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/csl/stm32f042/Src//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule +.PHONY : bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule + +# Convenience name for target. +Csl_Stm32f0xx: bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/rule + +.PHONY : Csl_Stm32f0xx + +# fast build rule for target. +Csl_Stm32f0xx/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build +.PHONY : Csl_Stm32f0xx/fast + +stm32f0xx_csl.o: stm32f0xx_csl.c.o + +.PHONY : stm32f0xx_csl.o + +# target to build an object file +stm32f0xx_csl.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.o +.PHONY : stm32f0xx_csl.c.o + +stm32f0xx_csl.i: stm32f0xx_csl.c.i + +.PHONY : stm32f0xx_csl.i + +# target to preprocess a source file +stm32f0xx_csl.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.i +.PHONY : stm32f0xx_csl.c.i + +stm32f0xx_csl.s: stm32f0xx_csl.c.s + +.PHONY : stm32f0xx_csl.s + +# target to generate assembly for a file +stm32f0xx_csl.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_csl.c.s +.PHONY : stm32f0xx_csl.c.s + +stm32f0xx_it.o: stm32f0xx_it.c.o + +.PHONY : stm32f0xx_it.o + +# target to build an object file +stm32f0xx_it.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.o +.PHONY : stm32f0xx_it.c.o + +stm32f0xx_it.i: stm32f0xx_it.c.i + +.PHONY : stm32f0xx_it.i + +# target to preprocess a source file +stm32f0xx_it.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.i +.PHONY : stm32f0xx_it.c.i + +stm32f0xx_it.s: stm32f0xx_it.c.s + +.PHONY : stm32f0xx_it.s + +# target to generate assembly for a file +stm32f0xx_it.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/stm32f0xx_it.c.s +.PHONY : stm32f0xx_it.c.s + +system_stm32f0xx.o: system_stm32f0xx.c.o + +.PHONY : system_stm32f0xx.o + +# target to build an object file +system_stm32f0xx.c.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.o +.PHONY : system_stm32f0xx.c.o + +system_stm32f0xx.i: system_stm32f0xx.c.i + +.PHONY : system_stm32f0xx.i + +# target to preprocess a source file +system_stm32f0xx.c.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.i +.PHONY : system_stm32f0xx.c.i + +system_stm32f0xx.s: system_stm32f0xx.c.s + +.PHONY : system_stm32f0xx.s + +# target to generate assembly for a file +system_stm32f0xx.c.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/build.make bsl/csl/stm32f042/Src/CMakeFiles/Csl_Stm32f0xx.dir/system_stm32f0xx.c.s +.PHONY : system_stm32f0xx.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... Csl_Stm32f0xx" + @echo "... stm32f0xx_csl.o" + @echo "... stm32f0xx_csl.i" + @echo "... stm32f0xx_csl.s" + @echo "... stm32f0xx_it.o" + @echo "... stm32f0xx_it.i" + @echo "... stm32f0xx_it.s" + @echo "... system_stm32f0xx.o" + @echo "... system_stm32f0xx.i" + @echo "... system_stm32f0xx.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/csl/stm32f042/Src/cmake_install.cmake b/build/bsl/csl/stm32f042/Src/cmake_install.cmake new file mode 100644 index 0000000..9cf6329 --- /dev/null +++ b/build/bsl/csl/stm32f042/Src/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/Src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + diff --git a/build/bsl/csl/stm32f042/cmake_install.cmake b/build/bsl/csl/stm32f042/cmake_install.cmake new file mode 100644 index 0000000..7f6d7e8 --- /dev/null +++ b/build/bsl/csl/stm32f042/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/key/Git/ked/build/bsl/csl/stm32f042/Drivers/cmake_install.cmake") + include("/home/key/Git/ked/build/bsl/csl/stm32f042/startup/cmake_install.cmake") + include("/home/key/Git/ked/build/bsl/csl/stm32f042/Src/cmake_install.cmake") + +endif() + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/ASM.includecache b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/ASM.includecache new file mode 100644 index 0000000..ec1028b --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/ASM.includecache @@ -0,0 +1,10 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake new file mode 100644 index 0000000..fdace06 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake @@ -0,0 +1,36 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "ASM" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_ASM + "/home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s" "/home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.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 + ) + +# 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/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make new file mode 100644 index 0000000..d187e12 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +# Include any dependencies generated for this target. +include bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make + +# Include the progress variables for this target. +include bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/progress.make + +# Include the compile flags for this target's objects. +include bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make + +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../bsl/csl/stm32f042/startup/startup_stm32f042x6.s + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/startup && /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/Startup.dir/startup_stm32f042x6.s.o -c /home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s + +# Object files for target Startup +Startup_OBJECTS = \ +"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + +# External object files for target Startup +Startup_EXTERNAL_OBJECTS = + +bsl/csl/stm32f042/startup/libStartup.a: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +bsl/csl/stm32f042/startup/libStartup.a: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make +bsl/csl/stm32f042/startup/libStartup.a: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libStartup.a" + cd /home/key/Git/ked/build/bsl/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean_target.cmake + cd /home/key/Git/ked/build/bsl/csl/stm32f042/startup && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Startup.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build: bsl/csl/stm32f042/startup/libStartup.a + +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build + +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean: + cd /home/key/Git/ked/build/bsl/csl/stm32f042/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean.cmake +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/clean + +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked /home/key/Git/ked/bsl/csl/stm32f042/startup /home/key/Git/ked/build /home/key/Git/ked/build/bsl/csl/stm32f042/startup /home/key/Git/ked/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean.cmake b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean.cmake new file mode 100644 index 0000000..c9d4792 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + "libStartup.a" + "libStartup.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ASM) + include(CMakeFiles/Startup.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..a43aec4 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libStartup.a" +) diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.internal b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.internal new file mode 100644 index 0000000..d560f84 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.internal @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o + /home/key/Git/ked/bsl/csl/stm32f042/startup/startup_stm32f042x6.s diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make new file mode 100644 index 0000000..98807a5 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/depend.make @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../bsl/csl/stm32f042/startup/startup_stm32f042x6.s + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make new file mode 100644 index 0000000..10da458 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# compile ASM with /usr/bin/arm-none-eabi-gcc +ASM_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +ASM_INCLUDES = + +ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt new file mode 100644 index 0000000..ecdc23b --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar cr libStartup.a CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +/usr/bin/arm-none-eabi-ranlib libStartup.a diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/progress.make b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/progress.make new file mode 100644 index 0000000..596289c --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 + diff --git a/build/bsl/csl/stm32f042/startup/CMakeFiles/progress.marks b/build/bsl/csl/stm32f042/startup/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/build/bsl/csl/stm32f042/startup/Makefile b/build/bsl/csl/stm32f042/startup/Makefile new file mode 100644 index 0000000..9e9ae58 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/Makefile @@ -0,0 +1,179 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/csl/stm32f042/startup//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule +.PHONY : bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule + +# Convenience name for target. +Startup: bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/rule + +.PHONY : Startup + +# fast build rule for target. +Startup/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build +.PHONY : Startup/fast + +startup_stm32f042x6.o: startup_stm32f042x6.s.o + +.PHONY : startup_stm32f042x6.o + +# target to build an object file +startup_stm32f042x6.s.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/build.make bsl/csl/stm32f042/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +.PHONY : startup_stm32f042x6.s.o + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... Startup" + @echo "... startup_stm32f042x6.o" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/csl/stm32f042/startup/cmake_install.cmake b/build/bsl/csl/stm32f042/startup/cmake_install.cmake new file mode 100644 index 0000000..4b7a484 --- /dev/null +++ b/build/bsl/csl/stm32f042/startup/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/key/Git/ked/bsl/csl/stm32f042/startup + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/CMakeDirectoryInformation.cmake b/build/bsl/nucleo_f042k6/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c9b035e --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/Git/ked") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/Git/ked/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/progress.marks b/build/bsl/nucleo_f042k6/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/CXX.includecache b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/CXX.includecache new file mode 100644 index 0000000..7a47b2d --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/CXX.includecache @@ -0,0 +1,168 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + +../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../bsl/csl/stm32f042/Inc/stm32_assert.h + +../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +stm32f0xx_ll_crs.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_crs.h +stm32f0xx_ll_rcc.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_rcc.h +stm32f0xx_ll_bus.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_bus.h +stm32f0xx_ll_system.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_system.h +stm32f0xx_ll_exti.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_exti.h +stm32f0xx_ll_cortex.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_cortex.h +stm32f0xx_ll_utils.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_utils.h +stm32f0xx_ll_pwr.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_pwr.h +stm32f0xx_ll_dma.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_dma.h +stm32f0xx_ll_gpio.h +../bsl/csl/stm32f042/Inc/stm32f0xx_ll_gpio.h +stm32_assert.h +../bsl/csl/stm32f042/Inc/stm32_assert.h + +/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp +bls_nucleo_f042k6.h +/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h + +/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h +stm32f0xx_csl.h +/home/key/Git/ked/bsl/nucleo_f042k6/stm32f0xx_csl.h + diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake new file mode 100644 index 0000000..a81f18b --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake @@ -0,0 +1,41 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp" "/home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "DATA_CACHE_ENABLE=0" + "HSE_STARTUP_TIMEOUT=100" + "HSE_VALUE=8000000" + "HSI_VALUE=8000000" + "INSTRUCTION_CACHE_ENABLE=0" + "LSE_STARTUP_TIMEOUT=5000" + "LSE_VALUE=32768" + "LSI_VALUE=40000" + "PREFETCH_ENABLE=1" + "STM32F042x6" + "USE_FULL_LL_DRIVER" + "VDD_VALUE=3300" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "../bsl/nucleo_f042k6" + "../bsl/nucleo_f042k6/../csl/stm32f042/Inc" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make new file mode 100644 index 0000000..c59701d --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make @@ -0,0 +1,118 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +# Include any dependencies generated for this target. +include bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.make + +# Include the progress variables for this target. +include bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/progress.make + +# Include the compile flags for this target's objects. +include bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o" + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o -c /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i" + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp > CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s" + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp -o CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s + +# Object files for target stmTranslator +stmTranslator_OBJECTS = \ +"CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o" + +# External object files for target stmTranslator +stmTranslator_EXTERNAL_OBJECTS = + +bsl/nucleo_f042k6/libstmTranslator.a: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o +bsl/nucleo_f042k6/libstmTranslator.a: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make +bsl/nucleo_f042k6/libstmTranslator.a: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/Git/ked/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libstmTranslator.a" + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && $(CMAKE_COMMAND) -P CMakeFiles/stmTranslator.dir/cmake_clean_target.cmake + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/stmTranslator.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build: bsl/nucleo_f042k6/libstmTranslator.a + +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean: + cd /home/key/Git/ked/build/bsl/nucleo_f042k6 && $(CMAKE_COMMAND) -P CMakeFiles/stmTranslator.dir/cmake_clean.cmake +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/clean + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/Git/ked /home/key/Git/ked/bsl/nucleo_f042k6 /home/key/Git/ked/build /home/key/Git/ked/build/bsl/nucleo_f042k6 /home/key/Git/ked/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend + diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean.cmake b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean.cmake new file mode 100644 index 0000000..a4af273 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o" + "libstmTranslator.a" + "libstmTranslator.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/stmTranslator.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean_target.cmake b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..1e7cf25 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libstmTranslator.a" +) diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.internal b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.internal new file mode 100644 index 0000000..4119a26 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.internal @@ -0,0 +1,28 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h + ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + ../bsl/csl/stm32f042/Inc/stm32_assert.h + ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h + /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp + /home/key/Git/ked/bsl/nucleo_f042k6/bls_nucleo_f042k6.h diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.make b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.make new file mode 100644 index 0000000..c345256 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/depend.make @@ -0,0 +1,28 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armcc.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_armclang.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_compiler.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_gcc.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_iccarm.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/cmsis_version.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/CMSIS/Include/core_cm0.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Inc/stm32_assert.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/csl/stm32f042/Inc/stm32f0xx_csl.h +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/nucleo_f042k6/bls_nucleo_f042k6.cpp +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o: ../bsl/nucleo_f042k6/bls_nucleo_f042k6.h + diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make new file mode 100644 index 0000000..9570903 --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# compile CXX with /usr/bin/arm-none-eabi-g++ +CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +CXX_INCLUDES = -I/home/key/Git/ked/bsl/nucleo_f042k6 -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Inc -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/Git/ked/bsl/nucleo_f042k6/../csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc + +CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++17 + diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/link.txt b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/link.txt new file mode 100644 index 0000000..1aa7baa --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar qc libstmTranslator.a CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o +/usr/bin/arm-none-eabi-ranlib libstmTranslator.a diff --git a/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/progress.make b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/progress.make new file mode 100644 index 0000000..a35c33b --- /dev/null +++ b/build/bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 15 +CMAKE_PROGRESS_2 = 16 + diff --git a/build/bsl/nucleo_f042k6/Makefile b/build/bsl/nucleo_f042k6/Makefile new file mode 100644 index 0000000..a48d662 --- /dev/null +++ b/build/bsl/nucleo_f042k6/Makefile @@ -0,0 +1,199 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.18 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Disable VCS-based implicit rules. +% : %,v + + +# Disable VCS-based implicit rules. +% : RCS/% + + +# Disable VCS-based implicit rules. +% : RCS/%,v + + +# Disable VCS-based implicit rules. +% : SCCS/s.% + + +# Disable VCS-based implicit rules. +% : s.% + + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/Git/ked + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/Git/ked/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles /home/key/Git/ked/build/bsl/nucleo_f042k6//CMakeFiles/progress.marks + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/Git/ked/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule +.PHONY : bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule + +# Convenience name for target. +stmTranslator: bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/rule + +.PHONY : stmTranslator + +# fast build rule for target. +stmTranslator/fast: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build +.PHONY : stmTranslator/fast + +bls_nucleo_f042k6.o: bls_nucleo_f042k6.cpp.o + +.PHONY : bls_nucleo_f042k6.o + +# target to build an object file +bls_nucleo_f042k6.cpp.o: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.o +.PHONY : bls_nucleo_f042k6.cpp.o + +bls_nucleo_f042k6.i: bls_nucleo_f042k6.cpp.i + +.PHONY : bls_nucleo_f042k6.i + +# target to preprocess a source file +bls_nucleo_f042k6.cpp.i: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.i +.PHONY : bls_nucleo_f042k6.cpp.i + +bls_nucleo_f042k6.s: bls_nucleo_f042k6.cpp.s + +.PHONY : bls_nucleo_f042k6.s + +# target to generate assembly for a file +bls_nucleo_f042k6.cpp.s: + cd /home/key/Git/ked/build && $(MAKE) $(MAKESILENT) -f bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/build.make bsl/nucleo_f042k6/CMakeFiles/stmTranslator.dir/bls_nucleo_f042k6.cpp.s +.PHONY : bls_nucleo_f042k6.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... stmTranslator" + @echo "... bls_nucleo_f042k6.o" + @echo "... bls_nucleo_f042k6.i" + @echo "... bls_nucleo_f042k6.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/Git/ked/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/bsl/nucleo_f042k6/cmake_install.cmake b/build/bsl/nucleo_f042k6/cmake_install.cmake new file mode 100644 index 0000000..7d256c8 --- /dev/null +++ b/build/bsl/nucleo_f042k6/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/key/Git/ked/bsl/nucleo_f042k6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..aceb0c7 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,60 @@ +# Install script for directory: /home/key/Git/ked + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/arm-none-eabi-objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/key/Git/ked/build/bsl/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/key/Git/ked/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/refOvenTest.bin b/build/refOvenTest.bin new file mode 100755 index 0000000..5c7fed1 Binary files /dev/null and b/build/refOvenTest.bin differ diff --git a/main.cpp b/main.cpp index 2cc6c22..809c4eb 100644 --- a/main.cpp +++ b/main.cpp @@ -1,79 +1,7 @@ -/* - * Authors : Kerem Yollu, Edwin Koch - * Date : 08.08.21 - * Version : 0.1 - * License : MIT-0 - * - * Description : Entry to project - * - * TODO : ALL - * - */ - -#include "main.hpp" - -CommandManager commander; - -Pin_Raspberry rpin; - -Pin_PC pcpin; - -// spi stuff -SPI_dummy spi; -Pin_PC chipSelectPin; -SPICH<Pin_PC, SPI_dummy> spiCH(chipSelectPin, spi); - -// i2c stuff -I2CDummy dummyI2C; - -template<typename derivation> -void baa(Pin<derivation>& p) -{ - p.write(true); -} - -void dummy() -{ - rpin.write(1); - std::cout << "Dummy" << std::endl; -} - -void foo() -{ - - uint8_t a[]= {1,2,3,4,5,6,7,8,9,10}; - std::cout << "foo" << std::endl; - - baa(rpin); - baa(pcpin); - - std::cout << "SPI test:" << std::endl; - spiCH.read_write_u8(10); - - - spiCH.writeArray(10,a,sizeof(a)); - - std::cout << "I2C test:" << std::endl; - dummyI2C.writeWord(0xAE,0xFF,0x01); - -} - -void dac() -{ - MCP4725<I2CDummy> dac(dummyI2C); - dac = 10; - dac = 10; - -} +#include"main.h" int main(int argc, char *argv[]) { - std::cout << "Main Begin" << std::endl; - commander.addNewCommand("dummy", "The test command for testing the test", dummy); - commander.addNewCommand("foo", "The test command for foo was called", foo); - commander.addNewCommand("dac", "The test command for dac was called", dac); - commander(argv[1]); - std::cout << "Main End" << std::endl; - return 1; + cppHook(); + return 1; } - diff --git a/bsl/main.h b/main.h similarity index 100% rename from bsl/main.h rename to main.h diff --git a/main.hpp b/main.hpp deleted file mode 100644 index 9c9dfe9..0000000 --- a/main.hpp +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef __MAIN_HPP__ -#define __MAIN_HPP__ - -#include <iostream> -#include <stdint.h> -#include <unistd.h> - -#include "./utils/commandManager.h" - -#include "./interfaces/pin.hpp" -#include "./interfaces/spi.hpp" -#include "./interfaces/spich.hpp" -#include "./interfaces/i2c.hpp" - -#include "./drivers/MCP4725/mcp4725.hpp" - -#include "bsl/csl/raspberry/peripherals/pinRaspberry.hpp" -#include "bsl/csl/PC/peripherals/pinPC.hpp" -#include "bsl/csl/PC/peripherals/spiDummy.hpp" -#include "bsl/csl/PC/peripherals/i2cDummy.hpp" - -#endif // __MAIN_HPP__ - diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..57eb9da --- /dev/null +++ b/run.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +FILE=build/ +if [ -d "$FILE" ];then + rm -r build + echo Cmake build dorectory exists + cmake -S . -B build/ +else + cmake -S . -B build/ +fi + +cd $FILE +make -j4 +st-flash write refOvenTest.bin 0x08000000 +cd .. diff --git a/runtest b/runtest deleted file mode 100755 index 79c1045..0000000 Binary files a/runtest and /dev/null differ