From 22eaa4193d440aa7dc828191a5447b45ee8cd8e2 Mon Sep 17 00:00:00 2001 From: Subham Singh Date: Tue, 7 May 2024 12:40:33 +0000 Subject: [PATCH 1/2] Added build support for i2c and spi --- i2c_example_linux/src/CMakeLists.txt | 7 + i2c_example_linux/src/build/CMakeCache.txt | 330 +++++++++ .../CMakeFiles/3.10.2/CMakeCCompiler.cmake | 73 ++ .../CMakeFiles/3.10.2/CMakeCXXCompiler.cmake | 75 +++ .../3.10.2/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 9064 bytes .../3.10.2/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 9248 bytes .../build/CMakeFiles/3.10.2/CMakeSystem.cmake | 15 + .../3.10.2/CompilerIdC/CMakeCCompilerId.c | 598 +++++++++++++++++ .../build/CMakeFiles/3.10.2/CompilerIdC/a.out | Bin 0 -> 9248 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 576 ++++++++++++++++ .../CMakeFiles/3.10.2/CompilerIdCXX/a.out | Bin 0 -> 9424 bytes .../CMakeDirectoryInformation.cmake | 16 + .../src/build/CMakeFiles/CMakeOutput.log | 629 ++++++++++++++++++ .../I2C_userspace.dir/C.includecache | 36 + .../I2C_userspace.dir/DependInfo.cmake | 21 + .../CMakeFiles/I2C_userspace.dir/build.make | 140 ++++ .../I2C_userspace.dir/cmake_clean.cmake | 11 + .../I2C_userspace.dir/depend.internal | 9 + .../CMakeFiles/I2C_userspace.dir/depend.make | 9 + .../CMakeFiles/I2C_userspace.dir/flags.make | 10 + .../CMakeFiles/I2C_userspace.dir/i2c.c.o | Bin 0 -> 3840 bytes .../CMakeFiles/I2C_userspace.dir/link.txt | 1 + .../CMakeFiles/I2C_userspace.dir/main.c.o | Bin 0 -> 2808 bytes .../I2C_userspace.dir/progress.make | 4 + .../src/build/CMakeFiles/Makefile.cmake | 118 ++++ .../src/build/CMakeFiles/Makefile2 | 108 +++ .../build/CMakeFiles/TargetDirectories.txt | 3 + .../src/build/CMakeFiles/cmake.check_cache | 1 + .../src/build/CMakeFiles/feature_tests.bin | Bin 0 -> 13288 bytes .../src/build/CMakeFiles/feature_tests.c | 34 + .../src/build/CMakeFiles/feature_tests.cxx | 405 +++++++++++ .../src/build/CMakeFiles/progress.marks | 1 + i2c_example_linux/src/build/I2C_userspace | Bin 0 -> 14144 bytes i2c_example_linux/src/build/Makefile | 208 ++++++ .../src/build/cmake_install.cmake | 49 ++ spi_example_linux/src/CMakeLists.txt | 4 + spi_example_linux/src/build/CMakeCache.txt | 330 +++++++++ .../CMakeFiles/3.10.2/CMakeCCompiler.cmake | 73 ++ .../CMakeFiles/3.10.2/CMakeCXXCompiler.cmake | 75 +++ .../3.10.2/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 9064 bytes .../3.10.2/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 9248 bytes .../build/CMakeFiles/3.10.2/CMakeSystem.cmake | 15 + .../3.10.2/CompilerIdC/CMakeCCompilerId.c | 598 +++++++++++++++++ .../build/CMakeFiles/3.10.2/CompilerIdC/a.out | Bin 0 -> 9248 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 576 ++++++++++++++++ .../CMakeFiles/3.10.2/CompilerIdCXX/a.out | Bin 0 -> 9424 bytes .../CMakeDirectoryInformation.cmake | 16 + .../src/build/CMakeFiles/CMakeOutput.log | 629 ++++++++++++++++++ .../src/build/CMakeFiles/Makefile.cmake | 118 ++++ .../src/build/CMakeFiles/Makefile2 | 108 +++ .../build/CMakeFiles/TargetDirectories.txt | 3 + .../src/build/CMakeFiles/cmake.check_cache | 1 + .../src/build/CMakeFiles/feature_tests.bin | Bin 0 -> 13288 bytes .../src/build/CMakeFiles/feature_tests.c | 34 + .../src/build/CMakeFiles/feature_tests.cxx | 405 +++++++++++ .../src/build/CMakeFiles/progress.marks | 1 + .../spi-userspace.dir/C.includecache | 42 ++ .../spi-userspace.dir/DependInfo.cmake | 21 + .../CMakeFiles/spi-userspace.dir/build.make | 140 ++++ .../spi-userspace.dir/cmake_clean.cmake | 11 + .../spi-userspace.dir/depend.internal | 9 + .../CMakeFiles/spi-userspace.dir/depend.make | 9 + .../CMakeFiles/spi-userspace.dir/flags.make | 10 + .../CMakeFiles/spi-userspace.dir/link.txt | 1 + .../CMakeFiles/spi-userspace.dir/main.c.o | Bin 0 -> 3176 bytes .../spi-userspace.dir/progress.make | 4 + .../CMakeFiles/spi-userspace.dir/spi.c.o | Bin 0 -> 4064 bytes spi_example_linux/src/build/Makefile | 208 ++++++ .../src/build/cmake_install.cmake | 49 ++ spi_example_linux/src/build/spi-userspace | Bin 0 -> 13976 bytes 70 files changed, 6977 insertions(+) create mode 100644 i2c_example_linux/src/CMakeLists.txt create mode 100644 i2c_example_linux/src/build/CMakeCache.txt create mode 100644 i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake create mode 100755 i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin create mode 100755 i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin create mode 100644 i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c create mode 100755 i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out create mode 100644 i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out create mode 100644 i2c_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/CMakeOutput.log create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/C.includecache create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/DependInfo.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/build.make create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/cmake_clean.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.internal create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.make create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/flags.make create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/i2c.c.o create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/link.txt create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/main.c.o create mode 100644 i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/progress.make create mode 100644 i2c_example_linux/src/build/CMakeFiles/Makefile.cmake create mode 100644 i2c_example_linux/src/build/CMakeFiles/Makefile2 create mode 100644 i2c_example_linux/src/build/CMakeFiles/TargetDirectories.txt create mode 100644 i2c_example_linux/src/build/CMakeFiles/cmake.check_cache create mode 100755 i2c_example_linux/src/build/CMakeFiles/feature_tests.bin create mode 100644 i2c_example_linux/src/build/CMakeFiles/feature_tests.c create mode 100644 i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx create mode 100644 i2c_example_linux/src/build/CMakeFiles/progress.marks create mode 100755 i2c_example_linux/src/build/I2C_userspace create mode 100644 i2c_example_linux/src/build/Makefile create mode 100644 i2c_example_linux/src/build/cmake_install.cmake create mode 100644 spi_example_linux/src/CMakeLists.txt create mode 100644 spi_example_linux/src/build/CMakeCache.txt create mode 100644 spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake create mode 100755 spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin create mode 100755 spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin create mode 100644 spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c create mode 100755 spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out create mode 100644 spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out create mode 100644 spi_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/CMakeOutput.log create mode 100644 spi_example_linux/src/build/CMakeFiles/Makefile.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/Makefile2 create mode 100644 spi_example_linux/src/build/CMakeFiles/TargetDirectories.txt create mode 100644 spi_example_linux/src/build/CMakeFiles/cmake.check_cache create mode 100755 spi_example_linux/src/build/CMakeFiles/feature_tests.bin create mode 100644 spi_example_linux/src/build/CMakeFiles/feature_tests.c create mode 100644 spi_example_linux/src/build/CMakeFiles/feature_tests.cxx create mode 100644 spi_example_linux/src/build/CMakeFiles/progress.marks create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/C.includecache create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/DependInfo.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/build.make create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/cmake_clean.cmake create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.internal create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.make create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/flags.make create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/link.txt create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/main.c.o create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/progress.make create mode 100644 spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/spi.c.o create mode 100644 spi_example_linux/src/build/Makefile create mode 100644 spi_example_linux/src/build/cmake_install.cmake create mode 100755 spi_example_linux/src/build/spi-userspace diff --git a/i2c_example_linux/src/CMakeLists.txt b/i2c_example_linux/src/CMakeLists.txt new file mode 100644 index 0000000..0194382 --- /dev/null +++ b/i2c_example_linux/src/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(I2C_userspace) + +add_executable(${PROJECT_NAME} main.c i2c.c i2c.h) + + diff --git a/i2c_example_linux/src/build/CMakeCache.txt b/i2c_example_linux/src/build/CMakeCache.txt new file mode 100644 index 0000000..b4870d0 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeCache.txt @@ -0,0 +1,330 @@ +# This is the CMakeCache file. +# For build in directory: /home/analog/linux-userspace-examples/i2c_example_linux/src/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=I2C_userspace + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/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 +I2C_userspace_BINARY_DIR:STATIC=/home/analog/linux-userspace-examples/i2c_example_linux/src/build + +//Value Computed by CMake +I2C_userspace_SOURCE_DIR:STATIC=/home/analog/linux-userspace-examples/i2c_example_linux/src + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/analog/linux-userspace-examples/i2c_example_linux/src/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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//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 +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//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 +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//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/analog/linux-userspace-examples/i2c_example_linux/src +//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=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..a5a1b03 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "7.5.0") +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 "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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 "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +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 "aarch64-linux-gnu") +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_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..ca54dfa --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.5.0") +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") +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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +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 "aarch64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..d9ba66edeffa7ff456ffddbe57bcd01faa24e44f GIT binary patch literal 9064 zcmeHNeQZ$g3FqK1}UTJ)|VICAr_8J{lUV= z*0g0(s&-RSvVuB|ruz~gq*W^uux>4@HVKt=>WWGko7$AGu|Y*x8N(XjopbLw_Vcqt zC!zf@skgm3_x{euJ@4N8?z`uh$D5j$Ivoy>;)4A^y}=5Nc$u+lDmRdLVF6U&-@D*W z7=`^Zg=xN56Xfc0h)oM+v*1ED>48(r+38&j3l$HEmNTyu`Tgx06$Fr>>9jqsGm>m-;&qvQjbt>Dl(G`_Z51}%j_0dRseKa&H8i}R5XPIUq*g0>GCmHw5*8Y=yk_{|>NR346cAIKx z{zPmOM*Q)M&#Z2E?2BXSdP9pAWD>!e6Ho3u@z$xG_qG4|qpF45D_=kH zRoP}@vVgjv67G?OwQyYIUA4@lX84e}Ei%%q#Ktt~Sm>SDmglv=@B{3)tpK;bfV7nS zX~f+uVaxB6c|10qaD)4DuDf`H z4f1~O@`v)wzob%++_06yEzV3qlnE(UVH~(hWA(wHC z@L|O9UF;kGhd`#f{Y(9BXYH|Cx9eT0iuVrkp42?mKZgAuTKXrj|AwXiKK4)Q{%4`* zox8D~alxJsUEa*e>Ck@`{pi6l;c6iB6w=`3KxQk_t)~N-bJ^_ni&zzZIFRuI?E7mr zJ6Zfi{AKV${}V{-kS+!|KM2r@{l2<$flMRHyP@_N$$?`n_^|C|-RqlQQ}gw4C1keYSZzM<{ay#mMSFd4A&^13PuVW>X7;1MC$PGq zXJwlY?*F*bo4LOE4K>F@=zI1l_~XzxIQXFpGTB-<2x!C6GqZnaT+cywXWIhAXAaeR z5qDG$34ds0KFOlZetO31n}4PJy!@VH_W;`c9@YWhy#8NIo7aEk1Ly7m=cFT7Yaw$5 z$M~1av1j0hf7?};bI%s^cfbMrUcu*^fa~+4P06b#T~lz4Chr+?-7zyc3i{h%@v#@3 z6VBIVv#qb-GhKeKarc!Ee7mpK()0aRJ)ibL?=9=Ta;TF4VA=AeD;8SLu16Xcd>x-( z<7Rv05xl=DfWS}7r!(+>Is@{3lJAj&pF=3!kEzH#l*5tS{Y~z~^4*gQt$ZWso=HW% ze-h3K|DQLqapJc*>2E&9>gJDzd?PCO*%9%3nC190o*Vye#zpSmS^a$Iu7YlG{{Y*|=J`ra$gzIAzm=Kr`YA>o)Yl;7rO6xs68D^rR$sVPMV0j=X>UQ8fM*> zR^aS!&0gSXnDcp!+RYU7U3ib_xo1+s4o z@!LSwvkqn8UKZ zvRkyB;(aw;$rs~aMx5-+cTenVJH`8UwX#!;Yx&~5L>lEwt-F>V2ZOeGep=Zd2L~9Z zToe_(F8O?jMls$W!M?~#oG9`mt)up*`2F3f{3*uCUa9BWi}I9Nk?%Y8sQg;lDPG?< z6@Dpef8UR?9s9X)mhIT{C;wnOhxog$N0oUiKKCl{d@q%6nS!`mlr8ing%_VQa}Y0; zkMbc-`6XFjxreMme453sG&isvd)_Ig@Zx+?4dSKpX6X^^JfY-ev^;&0?c2}Ky@ zV!767dO^MEbE|7mRT zpJCX94VqKYm$*)-@bdU;*a6Ce(mN{t l$oorSulR1&-@yX4Hl~a#vh?p5Y$A%apFbQIM3AXn|3CR43KIYT literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..3b264f277c80d82b22425e84ffbcb312ae667181 GIT binary patch literal 9248 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 NlK}oF1P%4-{~JIDA)NpK literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..1226853 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.9-04696-g7ce34b68e77b") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.9-04696-g7ce34b68e77b") +set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64") + + + +set(CMAKE_SYSTEM "Linux-5.10.9-04696-g7ce34b68e77b") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.9-04696-g7ce34b68e77b") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# 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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID +# 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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..9f5f394993853f4108d2a4d2f0f877f9ec47ee44 GIT binary patch literal 9248 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 literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID +# 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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..01b304a7ac79f197536c0ce1cedb409902827b59 GIT binary patch literal 9424 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 literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake b/i2c_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..51b9815 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/analog/linux-userspace-examples/i2c_example_linux/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/analog/linux-userspace-examples/i2c_example_linux/src/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/i2c_example_linux/src/build/CMakeFiles/CMakeOutput.log b/i2c_example_linux/src/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..641ad78 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,629 @@ +The system is: Linux - 5.10.9-04696-g7ce34b68e77b - aarch64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_92492/fast" +/usr/bin/make -f CMakeFiles/cmTC_92492.dir/build.make CMakeFiles/cmTC_92492.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_92492.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_92492.dir/testCCompiler.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_92492 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_92492.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_92492.dir/testCCompiler.c.o -o cmTC_92492 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_de3a0/fast" +/usr/bin/make -f CMakeFiles/cmTC_de3a0.dir/build.make CMakeFiles/cmTC_de3a0.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_de3a0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_de3a0.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -o cmTC_de3a0 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_de3a0' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyaasBo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_de3a0 /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_de3a0' '-mlittle-endian' '-mabi=lp64' +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_de3a0/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_de3a0.dir/build.make CMakeFiles/cmTC_de3a0.dir/build] + ignore line: [make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_de3a0] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_de3a0.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -o cmTC_de3a0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_de3a0' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyaasBo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_de3a0 /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccyaasBo.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_de3a0] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_de3a0.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7] ==> [/usr/lib/gcc/aarch64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_8ba95/fast" +/usr/bin/make -f CMakeFiles/cmTC_8ba95.dir/build.make CMakeFiles/cmTC_8ba95.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8ba95.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_8ba95.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_8ba95 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8ba95.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_8ba95.dir/feature_tests.c.o -o cmTC_8ba95 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_059bf/fast" +/usr/bin/make -f CMakeFiles/cmTC_059bf.dir/build.make CMakeFiles/cmTC_059bf.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_059bf.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_059bf.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_059bf +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_059bf.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_059bf.dir/feature_tests.c.o -o cmTC_059bf +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_eccff/fast" +/usr/bin/make -f CMakeFiles/cmTC_eccff.dir/build.make CMakeFiles/cmTC_eccff.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_eccff.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_eccff.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_eccff +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eccff.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_eccff.dir/feature_tests.c.o -o cmTC_eccff +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_92612/fast" +/usr/bin/make -f CMakeFiles/cmTC_92612.dir/build.make CMakeFiles/cmTC_92612.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_92612.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_92612.dir/testCXXCompiler.cxx.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_92612 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_92612.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_92612.dir/testCXXCompiler.cxx.o -o cmTC_92612 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_59579/fast" +/usr/bin/make -f CMakeFiles/cmTC_59579.dir/build.make CMakeFiles/cmTC_59579.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_59579 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59579.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_59579 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_59579' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccj1SrWq.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_59579 /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_59579' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_59579/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_59579.dir/build.make CMakeFiles/cmTC_59579.dir/build] + ignore line: [make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_59579] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59579.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_59579 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_59579' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccj1SrWq.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_59579 /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccj1SrWq.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_59579] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_59579.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7] ==> [/usr/lib/gcc/aarch64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_b707f/fast" +/usr/bin/make -f CMakeFiles/cmTC_b707f.dir/build.make CMakeFiles/cmTC_b707f.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_b707f.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_b707f.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_b707f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b707f.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_b707f.dir/feature_tests.cxx.o -o cmTC_b707f +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_ce474/fast" +/usr/bin/make -f CMakeFiles/cmTC_ce474.dir/build.make CMakeFiles/cmTC_ce474.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_ce474.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_ce474.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_ce474 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ce474.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_ce474.dir/feature_tests.cxx.o -o cmTC_ce474 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_c53a7/fast" +/usr/bin/make -f CMakeFiles/cmTC_c53a7.dir/build.make CMakeFiles/cmTC_c53a7.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_c53a7.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_c53a7.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_c53a7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c53a7.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_c53a7.dir/feature_tests.cxx.o -o cmTC_c53a7 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_4eae4/fast" +/usr/bin/make -f CMakeFiles/cmTC_4eae4.dir/build.make CMakeFiles/cmTC_4eae4.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_4eae4.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_4eae4.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_4eae4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4eae4.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_4eae4.dir/feature_tests.cxx.o -o cmTC_4eae4 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/C.includecache b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/C.includecache new file mode 100644 index 0000000..37b87dd --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/C.includecache @@ -0,0 +1,36 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c +linux/i2c-dev.h +- +sys/ioctl.h +- +unistd.h +- +fcntl.h +- +stdio.h +- +stdlib.h +- +i2c.h +/home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.h + +/home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.h +stdint.h +- + +/home/analog/linux-userspace-examples/i2c_example_linux/src/main.c +stdio.h +- +unistd.h +- +i2c.h +/home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.h + diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/DependInfo.cmake b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/DependInfo.cmake new file mode 100644 index 0000000..a5b076c --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/DependInfo.cmake @@ -0,0 +1,21 @@ +# 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/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c" "/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/i2c.c.o" + "/home/analog/linux-userspace-examples/i2c_example_linux/src/main.c" "/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/main.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_C_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/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/build.make b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/build.make new file mode 100644 index 0000000..bbaa3a4 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/build.make @@ -0,0 +1,140 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/analog/linux-userspace-examples/i2c_example_linux/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/analog/linux-userspace-examples/i2c_example_linux/src/build + +# Include any dependencies generated for this target. +include CMakeFiles/I2C_userspace.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/I2C_userspace.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/I2C_userspace.dir/flags.make + +CMakeFiles/I2C_userspace.dir/main.c.o: CMakeFiles/I2C_userspace.dir/flags.make +CMakeFiles/I2C_userspace.dir/main.c.o: ../main.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/I2C_userspace.dir/main.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/I2C_userspace.dir/main.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/main.c + +CMakeFiles/I2C_userspace.dir/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/I2C_userspace.dir/main.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/analog/linux-userspace-examples/i2c_example_linux/src/main.c > CMakeFiles/I2C_userspace.dir/main.c.i + +CMakeFiles/I2C_userspace.dir/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/I2C_userspace.dir/main.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/analog/linux-userspace-examples/i2c_example_linux/src/main.c -o CMakeFiles/I2C_userspace.dir/main.c.s + +CMakeFiles/I2C_userspace.dir/main.c.o.requires: + +.PHONY : CMakeFiles/I2C_userspace.dir/main.c.o.requires + +CMakeFiles/I2C_userspace.dir/main.c.o.provides: CMakeFiles/I2C_userspace.dir/main.c.o.requires + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/main.c.o.provides.build +.PHONY : CMakeFiles/I2C_userspace.dir/main.c.o.provides + +CMakeFiles/I2C_userspace.dir/main.c.o.provides.build: CMakeFiles/I2C_userspace.dir/main.c.o + + +CMakeFiles/I2C_userspace.dir/i2c.c.o: CMakeFiles/I2C_userspace.dir/flags.make +CMakeFiles/I2C_userspace.dir/i2c.c.o: ../i2c.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/I2C_userspace.dir/i2c.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/I2C_userspace.dir/i2c.c.o -c /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c + +CMakeFiles/I2C_userspace.dir/i2c.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/I2C_userspace.dir/i2c.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c > CMakeFiles/I2C_userspace.dir/i2c.c.i + +CMakeFiles/I2C_userspace.dir/i2c.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/I2C_userspace.dir/i2c.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c -o CMakeFiles/I2C_userspace.dir/i2c.c.s + +CMakeFiles/I2C_userspace.dir/i2c.c.o.requires: + +.PHONY : CMakeFiles/I2C_userspace.dir/i2c.c.o.requires + +CMakeFiles/I2C_userspace.dir/i2c.c.o.provides: CMakeFiles/I2C_userspace.dir/i2c.c.o.requires + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/i2c.c.o.provides.build +.PHONY : CMakeFiles/I2C_userspace.dir/i2c.c.o.provides + +CMakeFiles/I2C_userspace.dir/i2c.c.o.provides.build: CMakeFiles/I2C_userspace.dir/i2c.c.o + + +# Object files for target I2C_userspace +I2C_userspace_OBJECTS = \ +"CMakeFiles/I2C_userspace.dir/main.c.o" \ +"CMakeFiles/I2C_userspace.dir/i2c.c.o" + +# External object files for target I2C_userspace +I2C_userspace_EXTERNAL_OBJECTS = + +I2C_userspace: CMakeFiles/I2C_userspace.dir/main.c.o +I2C_userspace: CMakeFiles/I2C_userspace.dir/i2c.c.o +I2C_userspace: CMakeFiles/I2C_userspace.dir/build.make +I2C_userspace: CMakeFiles/I2C_userspace.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable I2C_userspace" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/I2C_userspace.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/I2C_userspace.dir/build: I2C_userspace + +.PHONY : CMakeFiles/I2C_userspace.dir/build + +CMakeFiles/I2C_userspace.dir/requires: CMakeFiles/I2C_userspace.dir/main.c.o.requires +CMakeFiles/I2C_userspace.dir/requires: CMakeFiles/I2C_userspace.dir/i2c.c.o.requires + +.PHONY : CMakeFiles/I2C_userspace.dir/requires + +CMakeFiles/I2C_userspace.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/I2C_userspace.dir/cmake_clean.cmake +.PHONY : CMakeFiles/I2C_userspace.dir/clean + +CMakeFiles/I2C_userspace.dir/depend: + cd /home/analog/linux-userspace-examples/i2c_example_linux/src/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/analog/linux-userspace-examples/i2c_example_linux/src /home/analog/linux-userspace-examples/i2c_example_linux/src /home/analog/linux-userspace-examples/i2c_example_linux/src/build /home/analog/linux-userspace-examples/i2c_example_linux/src/build /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/I2C_userspace.dir/depend + diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/cmake_clean.cmake b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/cmake_clean.cmake new file mode 100644 index 0000000..8bbd6b2 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/I2C_userspace.dir/main.c.o" + "CMakeFiles/I2C_userspace.dir/i2c.c.o" + "I2C_userspace.pdb" + "I2C_userspace" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/I2C_userspace.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.internal b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.internal new file mode 100644 index 0000000..a6b71ae --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.internal @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +CMakeFiles/I2C_userspace.dir/i2c.c.o + /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.c + /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.h +CMakeFiles/I2C_userspace.dir/main.c.o + /home/analog/linux-userspace-examples/i2c_example_linux/src/i2c.h + /home/analog/linux-userspace-examples/i2c_example_linux/src/main.c diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.make b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.make new file mode 100644 index 0000000..1ba05a3 --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/depend.make @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +CMakeFiles/I2C_userspace.dir/i2c.c.o: ../i2c.c +CMakeFiles/I2C_userspace.dir/i2c.c.o: ../i2c.h + +CMakeFiles/I2C_userspace.dir/main.c.o: ../i2c.h +CMakeFiles/I2C_userspace.dir/main.c.o: ../main.c + diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/flags.make b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/flags.make new file mode 100644 index 0000000..929cc6e --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile C with /usr/bin/cc +C_FLAGS = + +C_DEFINES = + +C_INCLUDES = + diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/i2c.c.o b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/i2c.c.o new file mode 100644 index 0000000000000000000000000000000000000000..47e09c7df114eb7c2da564f08c6993e344266705 GIT binary patch literal 3840 zcmbtXO>7%Q6n?H#ewvh|O-q0xbz1^W{~V_cG_DZYl0rBHRH{@U<*?n@o5YG^hxJCZ zas?Jb0s#_M1Cm zMar_@4;8=Ptn3AN;{$+k8vBQ#(haanaJ$TlzeVAYy-{4JHDQD6{$XkJJ=vho60Su$ z0N0CWx1#M{Bl=^5Z&qrBZ!X`8T0hlu>49pg8>(f>sRwiFFe_#9(@puo@_*;wlzS!r zE07@npR{9)6{ik%lyb@Z50wFJqMbvVonog!T>nr zoMhi@av>dz$CMnt{=g zk&{N>xygmBx6nV9&f0FyI1zg~7C(A?L4X5q4GhKNg9jx_DYq1QhPA=nd#x6uEuU}z zQT%HqQS=m)`vpKzHcJ%nDHRY|-px4n9A>jsJQT>}A-3DYxX<%W)}*2!qic{DM&Z67 z1P2k>sqOb8W*kS|wTTTd6oNk&f}cj5{42k4_W4o>|7GUiWS-)`8p3~#`F}FsXYHVF zl|S~1%!iNWcjgyD`0s?^@3EhGY&sJ1OR|igR&hTK!LK7u_4$SU4C0*RHhu{2;wz{8 zuQPs$@m?a6VB^G+(0c)TQ(#$B3)!S)#Ri8G$Fx}@{)}j_yl1-}xw3`En_A=!QNZaV8tHI^khXJ<0GBuu$Z!-eQx%fdj(St~g+YfUfME+y7L=&93i zB@C$f=j{A!eUkTb^KyHSNCkWF+^8p%jPZbQ)f)s|(r~>uKG$%3x7KBYN8|^8f7E3c z-xI=j)=_{y#=B8dS1t0|5yp21@OXf)Tnz^J3Lj#e;_g-;>N6Uy-?J3s!F*;I59WjK zSs{ua=NR(=zQR4mgZW(3@E-O-%HaDPtlJ>tDz48qLyW6D75;31|2p%{0AJy!84u=p zM#I%zB3I`_@FL?UaDR_+Oj7SMPUoZJpJ{&ZC0v(lA%1Rz`1wKeL(h06ZQSp)uZIq&wk*he92}Z}J(W|5N(`w57cGTHr{EvR_pIYn8u(=?5^`t3Fov z$6P4#uM2TWlzv_tiv|9=6)ZI4%1&`<9?YHAl>HrEd=Rk?{HXj@{Rt1&4k5VAKXHDh Xi6+7L^o(z1f2Um<(LbWP1nvI@b-^|M literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/link.txt b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/link.txt new file mode 100644 index 0000000..e50704d --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -rdynamic CMakeFiles/I2C_userspace.dir/main.c.o CMakeFiles/I2C_userspace.dir/i2c.c.o -o I2C_userspace diff --git a/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/main.c.o b/i2c_example_linux/src/build/CMakeFiles/I2C_userspace.dir/main.c.o new file mode 100644 index 0000000000000000000000000000000000000000..a5620ecd96547537af6a0cc78ec2dee6becab114 GIT binary patch literal 2808 zcmbuBO>7%g5Xb+n3-kk;kfb6aQoM~))FQHWXrZAO76Md4RTWAq^#C#(dy`m+KiFNP zRuvE-4mp6-h#WYf4fFtjZ`F1PgR9DSBOK8{yxt6Z>|?UOMz}5C^bz<;Hhgd8{No*d%-v@HTVwUMqm~ z(!D==mimrh>3q`T@%$>5zc|nORt1-n+gO=opFF-N-)*0yi0etwyIug^zYk2SxLDzJ z%z=^N1HeFX+j|M`48Fbg3u)w@1!jhE=)t`l=Dxz9KMap-scEgi`MpgCxI=L_JQa6! z>&nmHuIJ0Y>wRc{a}SEq9-pE;?x#Ar_HU$~A*yvq)w*uiO8jZAlYB>Le|!!UYxPz? zHV+ABJ1O91Qt)nKeMIV2u^sVG`lRs^MR5>5LA9V*4L&Fm9V@W~?D$8qAI9kda;a5< z)E#k9Zv~+rx5MDHb99!j<;>*dY3JC5nRX*?7thuje%N$Qxi7e-u@mhSj(;>h;g(Jw zS5&3x`pLbx7aI?=9P*i+3gqdPC3%XJC3!s3fmOSA@`I^o))T^cAM1$2Adg2oINd+` zjQW2Sk5SUS9p1o;UHD`d{$>|`u?v5<3vUqTI(2;y$YzP?omJVB=^ zRxnz{=q1GU)`>DVY}x2Hl*`nUm4$L;exW?q_QNWuam#f-S|Hy!w4=o!Xr+voHd5GX z$I-5Z+~8@l)G=*xw8B~=o)yq+QHgk*KS)l|)vF#*wmyRii$ABPF+^OiWpvWu>IqU{ z%HZ4^TBL0!J_ZR z!KD~()sKC+Gf@OLY$~JDtk;7E%{7{F;GQ{mVJv;x%-H{9?9f^++5Tqqh_U=2`%xDE z2JDt0GMRb1F^r4V2ikKg~X4_rc=V*RKQYMRtU+n`1?G*!fEsc3{~abFd-=iGbG+j%py zyEdl(_QJe#@AMw>Ypqz8AUjDrK%vvKqE}S--}=_ zoQ3ULfs^!%1W1)-NU3J1)It);B-dCY`ND9nL}L%Ku!RICDO?=rK2Ks9g18&`OSW#A zC+S<}NsSe#?AWRx%Tbf$b||?WN{-m$+fj>woJ-oh;}Ys7vKfITXw9u_4N<$oYHdW5AXi$-f7ovpZfga+vYxg z!@CC#|K;6BmS+F<(VKU#zv#~U9=`XPpPZaNZPw98HgsG!_`z!*Prv=+?R}(TtdfMO z06ee(#w5(ffntwHLNkI?fQPH70WRT20Dc|oYN!KPfFENkRfUlaT844_uOU7qS*m`0 zY}LUWxG-dAUf^d#T?l`l!iVqc*-`ZT0P(39KX{|?{}S;tVFqN*!3q|hzk9HL9**cP z8dxm-;uqjY2no;eNTK1+SfTq0+kdIz->md3Py+h|K01y|75`-+d+tDdoc`+s|8%%g z@nchz{rDT_XTWu0(7IR-nr8IsT9@tUd3&RUO(JQYue-ih&}|3wY|-@@Z+Io*wLx3m zu|_j3*UH(RZ@C?7TJlB5>d>=!(vkH%r9uPEGId{9NXs!bL}`SQ9N5Seip~i8>Kn0c z+KyK8EEB219_kmnMLSRfB3VzRBWX~qIc@E$n_IM{=_OYyuh9CX6--xRoPSb8a*;1( z**@?K3~M#;k!o|iPO6F1uf}<+ipz{|RQMO`6GD>lJkG~Lc%FABLU^7>lhrz5J={L1 z_!DRk#Vjsw2Jp&MK{^t^2jlfn03QrBI~BeLl?3(d3gCm!!@U7~Q2)~bJjY=&==7%j zyH6)!0OQKw=}mv!bs(u7;(H)?0_j@;_RjokTe&X#?SWKH{h|6)@^!uh?Ny}RFKMEE z2;092v=3wZg+Ti)Y#){FdC>pr#dy7!ggx&hGv%Z6Vc>nVryu)-p|#x`!}-1HelSU$ks%_@e0{yte%s`R_;B<}cdH%~;PU+0&bz7k>L>DwMZjU!BdF zYcdJA3ia)U58KKJ_X*v#netO;?_s=B(7&#;8Ls(cYNmX8(+k4aN6_}+7I@{z40z_9 zB$NSQYa(^|z>yjK&!oCL8<93Zww~Vfoapb?^#p zV4xGOKlH1b^N%+S4|hC)wtf0W)9zDmH}4**Cp-Tn?36ahxe}Zw39+^T&S_b{UR&AP z)N#wY)@v6Vy}g>A%VChveG7wEmtM;IBCOaV__-iY7jG}`9ySK-U$|4CV zeo4=3SlwW`o{h{=KGQPt@x3!e)6v4w1<~h55j|?*Fu0aqavgCuv0ceQ>MA*gkJeO1 zLet&c==_$cvBa26h2jQloC#oBd73Y_lOv~izFRWe^x{B^Sx@+PTF!ID1KMFX8dD}pJV~!P$Cq665EZ3%o=6E`B+Kf0k#&_aHAv&_; zZOt|<$G5v|D`sxxEQcl}zG9f;I9zbrhL+b0Su<{7*-p3R+FxQsYzOxNmgeXM%j?mN zxYavqCz2pc)eOA{=V+{W(ZIz*Yhk>JiEl?aP5i{K9H(gY8di@Vb*)3Q4kv-36|6$m za)nJXY^8j@$B*$mPI1@8p^1vPx|6eLw#AX|!M8A%X8q`)#I?Hc1<)}p?QV=2H1K22 ze%H$Dy~rY#QG5gn1OuF@CN4Fc`!Uwpxo%%W>+_bDb#>z|%a56=?gl+yq5z|;jA8L` zJ{G%_W25~jzw4f7xiKSy4x&+|HCwHF2|a1}nK4qKWnaJ;5f?rDZr9RHoFO=&qK5dc zZsT0ejT0?Pj%^f8Ym6a74jk{o$PyIMCE8)h!TFBkZ%{--q1fjDzM#8f^tC~EZQ2i1 z98m2f@i-PdCe3Z#aEoIxusc24;w0uKzeRiX1YYK6!^5=yq*5mVBsQ*t+TM#3bEnmd zZxRdJga;-(FyVm-4@`Jq!UGi#@ONzfZcXpo zR2WW^&B{3xoqbW^bBM3WCZ2Cf2|hRFZ^?AdM1{YTUnHBAW37Lm87>lPM~x)#H|0)M z;cv;4)kkhV{uokv=zNO`z5i1Y=W?f7STf%Dk+`PXeBg)%df3=WR9qY~b;%#!m*G z2i5o~!1Jvde@H>{7cy%#vfOBk!+!K6OewJ4ICGkbOtNr2Yya5eijZ`A~3!@ zTcn=oyqYigqxkP2p7itcko8MF(Rq8T&=bW={%C$c3HjsvFZpM{s*s-_5c)^(htz{e zj?1|aj;B)3OlS|SJ3NDn?U(g%eCGQdZG2h38PdN~*f|rzc+wYlzrRI(%Bis}k10ekqji2+7pYlTZ zxyNVY3lX1U;Q)M0;G=PAHR9v)JZ?k$B>{P^ZdCl?d>U8aqxm$KBK|yx#(}<3^!!Nh zb8jQ?QKdhem$Mh~sS&nHZT~2GUO{|Z{>>4=AI-mc7RM_tuVuI5?+?Y96Nr!FA5!@6 zxYy!~A&n!iBk|oB?_vt#JN(Qh=~!lIJrilnrhVJuSlXev7`=ad#*y(pbl|D(j4 z4cA|iF2Vv67W954O{mC5MR>H3*Y2_OyRWG0<=;<0cq@X4>4ZoF#o;&>*JV}wV%uHJ{oE56$YU37G!nWaLZ4@Ckk zc|=#mYUy-bhsO?{@1^l52DI1xz0GmjZLKJ2UYOSl3x>YOIAqsP%SaDnXjm=H%+Knq$ z-rU-ubu=}%w^9~VCAH~)O{uEN*~(-B8BVd;R-u%xYJo9wu|(=uHTO8#Suu%OB8g0- zi^XPVLE7sp_<9zh?@HLsH5>C0+#X0fMc+y{HLqUi>p9iJ)sxPaY|QnvO-NI#Tlcyl zZT2~+PeR|76qU(P)zFYe2a+V9YCU-$(jv($O=%F27Ne4Oiz0t5ZFQ?@*KMLKx1@xe zGg5-t%zV1xGPEYJHmhD#MQ+s}Lq z??O85`MJ&eJ%%YIPxe#aY`;RoMy!xeS)TWW4EZ|*_s{Zt|C^P3vr@?4H5hg(Jjv6y zldwGPKgh1i_XlQBkoP0VB1(AtA4F_WKBeRsc1p3zFQ4x+91O|#D|v>GhX#zzV}%cg zwAI7tM5c1rUJ<8uqO2RG50Q%0_iWl3%>z}?)vh7kr{=Rsbg!4m0 Y?w5IIVkN{PNXNe+IsU_p3WnwX3o4Y!=l}o! literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/CMakeFiles/feature_tests.c b/i2c_example_linux/src/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..83e86dd --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx b/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/i2c_example_linux/src/build/CMakeFiles/progress.marks b/i2c_example_linux/src/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/i2c_example_linux/src/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/i2c_example_linux/src/build/I2C_userspace b/i2c_example_linux/src/build/I2C_userspace new file mode 100755 index 0000000000000000000000000000000000000000..1ff66bfcafc6d5aaa313231099765056af696c73 GIT binary patch literal 14144 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 S=gR5l8nndwB50^r|GxpAou}ad literal 0 HcmV?d00001 diff --git a/i2c_example_linux/src/build/Makefile b/i2c_example_linux/src/build/Makefile new file mode 100644 index 0000000..5530461 --- /dev/null +++ b/i2c_example_linux/src/build/Makefile @@ -0,0 +1,208 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/analog/linux-userspace-examples/i2c_example_linux/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/analog/linux-userspace-examples/i2c_example_linux/src/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 -H$(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/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/analog/linux-userspace-examples/i2c_example_linux/src/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named I2C_userspace + +# Build rule for target. +I2C_userspace: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 I2C_userspace +.PHONY : I2C_userspace + +# fast build rule for target. +I2C_userspace/fast: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/build +.PHONY : I2C_userspace/fast + +i2c.o: i2c.c.o + +.PHONY : i2c.o + +# target to build an object file +i2c.c.o: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/i2c.c.o +.PHONY : i2c.c.o + +i2c.i: i2c.c.i + +.PHONY : i2c.i + +# target to preprocess a source file +i2c.c.i: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/i2c.c.i +.PHONY : i2c.c.i + +i2c.s: i2c.c.s + +.PHONY : i2c.s + +# target to generate assembly for a file +i2c.c.s: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/i2c.c.s +.PHONY : i2c.c.s + +main.o: main.c.o + +.PHONY : main.o + +# target to build an object file +main.c.o: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/main.c.o +.PHONY : main.c.o + +main.i: main.c.i + +.PHONY : main.i + +# target to preprocess a source file +main.c.i: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/main.c.i +.PHONY : main.c.i + +main.s: main.c.s + +.PHONY : main.s + +# target to generate assembly for a file +main.c.s: + $(MAKE) -f CMakeFiles/I2C_userspace.dir/build.make CMakeFiles/I2C_userspace.dir/main.c.s +.PHONY : main.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... I2C_userspace" + @echo "... edit_cache" + @echo "... i2c.o" + @echo "... i2c.i" + @echo "... i2c.s" + @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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/i2c_example_linux/src/build/cmake_install.cmake b/i2c_example_linux/src/build/cmake_install.cmake new file mode 100644 index 0000000..91410b9 --- /dev/null +++ b/i2c_example_linux/src/build/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/analog/linux-userspace-examples/i2c_example_linux/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 "FALSE") +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/analog/linux-userspace-examples/i2c_example_linux/src/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/spi_example_linux/src/CMakeLists.txt b/spi_example_linux/src/CMakeLists.txt new file mode 100644 index 0000000..7470c46 --- /dev/null +++ b/spi_example_linux/src/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.0) +project(spi-userspace) + +add_executable(${PROJECT_NAME} main.c spi.c spi.h) diff --git a/spi_example_linux/src/build/CMakeCache.txt b/spi_example_linux/src/build/CMakeCache.txt new file mode 100644 index 0000000..b18c659 --- /dev/null +++ b/spi_example_linux/src/build/CMakeCache.txt @@ -0,0 +1,330 @@ +# This is the CMakeCache file. +# For build in directory: /home/analog/linux-userspace-examples/spi_example_linux/src/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=spi-userspace + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/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 +spi-userspace_BINARY_DIR:STATIC=/home/analog/linux-userspace-examples/spi_example_linux/src/build + +//Value Computed by CMake +spi-userspace_SOURCE_DIR:STATIC=/home/analog/linux-userspace-examples/spi_example_linux/src + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/analog/linux-userspace-examples/spi_example_linux/src/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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//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 +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//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 +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//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/analog/linux-userspace-examples/spi_example_linux/src +//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=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..a5a1b03 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "7.5.0") +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 "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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 "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +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 "aarch64-linux-gnu") +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_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..ca54dfa --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.5.0") +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") +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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +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 "aarch64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..d9ba66edeffa7ff456ffddbe57bcd01faa24e44f GIT binary patch literal 9064 zcmeHNeQZ$g3FqK1}UTJ)|VICAr_8J{lUV= z*0g0(s&-RSvVuB|ruz~gq*W^uux>4@HVKt=>WWGko7$AGu|Y*x8N(XjopbLw_Vcqt zC!zf@skgm3_x{euJ@4N8?z`uh$D5j$Ivoy>;)4A^y}=5Nc$u+lDmRdLVF6U&-@D*W z7=`^Zg=xN56Xfc0h)oM+v*1ED>48(r+38&j3l$HEmNTyu`Tgx06$Fr>>9jqsGm>m-;&qvQjbt>Dl(G`_Z51}%j_0dRseKa&H8i}R5XPIUq*g0>GCmHw5*8Y=yk_{|>NR346cAIKx z{zPmOM*Q)M&#Z2E?2BXSdP9pAWD>!e6Ho3u@z$xG_qG4|qpF45D_=kH zRoP}@vVgjv67G?OwQyYIUA4@lX84e}Ei%%q#Ktt~Sm>SDmglv=@B{3)tpK;bfV7nS zX~f+uVaxB6c|10qaD)4DuDf`H z4f1~O@`v)wzob%++_06yEzV3qlnE(UVH~(hWA(wHC z@L|O9UF;kGhd`#f{Y(9BXYH|Cx9eT0iuVrkp42?mKZgAuTKXrj|AwXiKK4)Q{%4`* zox8D~alxJsUEa*e>Ck@`{pi6l;c6iB6w=`3KxQk_t)~N-bJ^_ni&zzZIFRuI?E7mr zJ6Zfi{AKV${}V{-kS+!|KM2r@{l2<$flMRHyP@_N$$?`n_^|C|-RqlQQ}gw4C1keYSZzM<{ay#mMSFd4A&^13PuVW>X7;1MC$PGq zXJwlY?*F*bo4LOE4K>F@=zI1l_~XzxIQXFpGTB-<2x!C6GqZnaT+cywXWIhAXAaeR z5qDG$34ds0KFOlZetO31n}4PJy!@VH_W;`c9@YWhy#8NIo7aEk1Ly7m=cFT7Yaw$5 z$M~1av1j0hf7?};bI%s^cfbMrUcu*^fa~+4P06b#T~lz4Chr+?-7zyc3i{h%@v#@3 z6VBIVv#qb-GhKeKarc!Ee7mpK()0aRJ)ibL?=9=Ta;TF4VA=AeD;8SLu16Xcd>x-( z<7Rv05xl=DfWS}7r!(+>Is@{3lJAj&pF=3!kEzH#l*5tS{Y~z~^4*gQt$ZWso=HW% ze-h3K|DQLqapJc*>2E&9>gJDzd?PCO*%9%3nC190o*Vye#zpSmS^a$Iu7YlG{{Y*|=J`ra$gzIAzm=Kr`YA>o)Yl;7rO6xs68D^rR$sVPMV0j=X>UQ8fM*> zR^aS!&0gSXnDcp!+RYU7U3ib_xo1+s4o z@!LSwvkqn8UKZ zvRkyB;(aw;$rs~aMx5-+cTenVJH`8UwX#!;Yx&~5L>lEwt-F>V2ZOeGep=Zd2L~9Z zToe_(F8O?jMls$W!M?~#oG9`mt)up*`2F3f{3*uCUa9BWi}I9Nk?%Y8sQg;lDPG?< z6@Dpef8UR?9s9X)mhIT{C;wnOhxog$N0oUiKKCl{d@q%6nS!`mlr8ing%_VQa}Y0; zkMbc-`6XFjxreMme453sG&isvd)_Ig@Zx+?4dSKpX6X^^JfY-ev^;&0?c2}Ky@ zV!767dO^MEbE|7mRT zpJCX94VqKYm$*)-@bdU;*a6Ce(mN{t l$oorSulR1&-@yX4Hl~a#vh?p5Y$A%apFbQIM3AXn|3CR43KIYT literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..3b264f277c80d82b22425e84ffbcb312ae667181 GIT binary patch literal 9248 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 NlK}oF1P%4-{~JIDA)NpK literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..1226853 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.9-04696-g7ce34b68e77b") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.9-04696-g7ce34b68e77b") +set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64") + + + +set(CMAKE_SYSTEM "Linux-5.10.9-04696-g7ce34b68e77b") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.9-04696-g7ce34b68e77b") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# 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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID +# 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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..9f5f394993853f4108d2a4d2f0f877f9ec47ee44 GIT binary patch literal 9248 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 literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID +# 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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..01b304a7ac79f197536c0ce1cedb409902827b59 GIT binary patch literal 9424 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 literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake b/spi_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..898a38a --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/analog/linux-userspace-examples/spi_example_linux/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/analog/linux-userspace-examples/spi_example_linux/src/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/spi_example_linux/src/build/CMakeFiles/CMakeOutput.log b/spi_example_linux/src/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..5914caf --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,629 @@ +The system is: Linux - 5.10.9-04696-g7ce34b68e77b - aarch64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_12dc2/fast" +/usr/bin/make -f CMakeFiles/cmTC_12dc2.dir/build.make CMakeFiles/cmTC_12dc2.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_12dc2.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_12dc2.dir/testCCompiler.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_12dc2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_12dc2.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_12dc2.dir/testCCompiler.c.o -o cmTC_12dc2 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_5a1cb/fast" +/usr/bin/make -f CMakeFiles/cmTC_5a1cb.dir/build.make CMakeFiles/cmTC_5a1cb.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_5a1cb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a1cb.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -o cmTC_5a1cb +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5a1cb' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccO3rKjd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_5a1cb /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5a1cb' '-mlittle-endian' '-mabi=lp64' +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5a1cb/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5a1cb.dir/build.make CMakeFiles/cmTC_5a1cb.dir/build] + ignore line: [make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_5a1cb] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a1cb.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -o cmTC_5a1cb ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5a1cb' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccO3rKjd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_5a1cb /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccO3rKjd.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_5a1cb] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_5a1cb.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7] ==> [/usr/lib/gcc/aarch64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_9715b/fast" +/usr/bin/make -f CMakeFiles/cmTC_9715b.dir/build.make CMakeFiles/cmTC_9715b.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9715b.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_9715b.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_9715b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9715b.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_9715b.dir/feature_tests.c.o -o cmTC_9715b +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_93b68/fast" +/usr/bin/make -f CMakeFiles/cmTC_93b68.dir/build.make CMakeFiles/cmTC_93b68.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_93b68.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_93b68.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_93b68 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_93b68.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_93b68.dir/feature_tests.c.o -o cmTC_93b68 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_e1c42/fast" +/usr/bin/make -f CMakeFiles/cmTC_e1c42.dir/build.make CMakeFiles/cmTC_e1c42.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e1c42.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_e1c42.dir/feature_tests.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_e1c42 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e1c42.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_e1c42.dir/feature_tests.c.o -o cmTC_e1c42 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_e8cda/fast" +/usr/bin/make -f CMakeFiles/cmTC_e8cda.dir/build.make CMakeFiles/cmTC_e8cda.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_e8cda.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_e8cda.dir/testCXXCompiler.cxx.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_e8cda +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8cda.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_e8cda.dir/testCXXCompiler.cxx.o -o cmTC_e8cda +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_4f0ab/fast" +/usr/bin/make -f CMakeFiles/cmTC_4f0ab.dir/build.make CMakeFiles/cmTC_4f0ab.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_4f0ab +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4f0ab.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4f0ab +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu +Thread model: posix +gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4f0ab' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccp1Frff.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_4f0ab /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4f0ab' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4f0ab/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_4f0ab.dir/build.make CMakeFiles/cmTC_4f0ab.dir/build] + ignore line: [make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_4f0ab] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4f0ab.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4f0ab ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/7/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_4f0ab' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccp1Frff.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_4f0ab /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/7 -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/7/../../.. CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccp1Frff.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_4f0ab] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_4f0ab.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/aarch64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7] ==> [/usr/lib/gcc/aarch64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/7;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_63d07/fast" +/usr/bin/make -f CMakeFiles/cmTC_63d07.dir/build.make CMakeFiles/cmTC_63d07.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_63d07.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_63d07.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_63d07 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63d07.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_63d07.dir/feature_tests.cxx.o -o cmTC_63d07 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_3be09/fast" +/usr/bin/make -f CMakeFiles/cmTC_3be09.dir/build.make CMakeFiles/cmTC_3be09.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_3be09.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_3be09.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_3be09 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3be09.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_3be09.dir/feature_tests.cxx.o -o cmTC_3be09 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_17568/fast" +/usr/bin/make -f CMakeFiles/cmTC_17568.dir/build.make CMakeFiles/cmTC_17568.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_17568.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_17568.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_17568 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_17568.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_17568.dir/feature_tests.cxx.o -o cmTC_17568 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_5dfb4/fast" +/usr/bin/make -f CMakeFiles/cmTC_5dfb4.dir/build.make CMakeFiles/cmTC_5dfb4.dir/build +make[1]: Entering directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_5dfb4.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_5dfb4.dir/feature_tests.cxx.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_5dfb4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dfb4.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_5dfb4.dir/feature_tests.cxx.o -o cmTC_5dfb4 +make[1]: Leaving directory '/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/spi_example_linux/src/build/CMakeFiles/Makefile.cmake b/spi_example_linux/src/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..75c3b68 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,118 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.10.2/CMakeCCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.10.2/CMakeSystem.cmake" + "CMakeFiles/feature_tests.c" + "CMakeFiles/feature_tests.cxx" + "/usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.10/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.10/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.10/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.10.2/CMakeSystem.cmake" + "CMakeFiles/3.10.2/CMakeCCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCCompiler.cmake" + "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/spi-userspace.dir/DependInfo.cmake" + ) diff --git a/spi_example_linux/src/build/CMakeFiles/Makefile2 b/spi_example_linux/src/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..dc58eaf --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src/build + +#============================================================================= +# Target rules for target CMakeFiles/spi-userspace.dir + +# All Build rule for target. +CMakeFiles/spi-userspace.dir/all: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/depend + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles --progress-num=1,2,3 "Built target spi-userspace" +.PHONY : CMakeFiles/spi-userspace.dir/all + +# Include target in all. +all: CMakeFiles/spi-userspace.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/spi-userspace.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles 3 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/spi-userspace.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles 0 +.PHONY : CMakeFiles/spi-userspace.dir/rule + +# Convenience name for target. +spi-userspace: CMakeFiles/spi-userspace.dir/rule + +.PHONY : spi-userspace + +# clean rule for target. +CMakeFiles/spi-userspace.dir/clean: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/clean +.PHONY : CMakeFiles/spi-userspace.dir/clean + +# clean rule for target. +clean: CMakeFiles/spi-userspace.dir/clean + +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/spi_example_linux/src/build/CMakeFiles/TargetDirectories.txt b/spi_example_linux/src/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..4fcd408 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/rebuild_cache.dir +/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir +/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/edit_cache.dir diff --git a/spi_example_linux/src/build/CMakeFiles/cmake.check_cache b/spi_example_linux/src/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/spi_example_linux/src/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/spi_example_linux/src/build/CMakeFiles/feature_tests.bin b/spi_example_linux/src/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000000000000000000000000000000000000..258a67ca57c7d365608b2ba311caefb7cd6cfcb2 GIT binary patch literal 13288 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 Y?w5IIVkN{PNXNe+IsU_p3WnwX3o4Y!=l}o! literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/feature_tests.c b/spi_example_linux/src/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..83e86dd --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx b/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/spi_example_linux/src/build/CMakeFiles/progress.marks b/spi_example_linux/src/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/C.includecache b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/C.includecache new file mode 100644 index 0000000..9fa8456 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/C.includecache @@ -0,0 +1,42 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/analog/linux-userspace-examples/spi_example_linux/src/main.c +stdio.h +- +stdlib.h +- +string.h +- +unistd.h +- +spi.h +/home/analog/linux-userspace-examples/spi_example_linux/src/spi.h + +/home/analog/linux-userspace-examples/spi_example_linux/src/spi.c +linux/spi/spidev.h +- +sys/ioctl.h +- +unistd.h +- +fcntl.h +- +stdio.h +- +stdlib.h +- +string.h +- +spi.h +/home/analog/linux-userspace-examples/spi_example_linux/src/spi.h + +/home/analog/linux-userspace-examples/spi_example_linux/src/spi.h +stdint.h +- + diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/DependInfo.cmake b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/DependInfo.cmake new file mode 100644 index 0000000..2078aec --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/DependInfo.cmake @@ -0,0 +1,21 @@ +# 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/analog/linux-userspace-examples/spi_example_linux/src/main.c" "/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/main.c.o" + "/home/analog/linux-userspace-examples/spi_example_linux/src/spi.c" "/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/spi.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_C_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/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/build.make b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/build.make new file mode 100644 index 0000000..8051940 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/build.make @@ -0,0 +1,140 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src/build + +# Include any dependencies generated for this target. +include CMakeFiles/spi-userspace.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/spi-userspace.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/spi-userspace.dir/flags.make + +CMakeFiles/spi-userspace.dir/main.c.o: CMakeFiles/spi-userspace.dir/flags.make +CMakeFiles/spi-userspace.dir/main.c.o: ../main.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/spi-userspace.dir/main.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/spi-userspace.dir/main.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/main.c + +CMakeFiles/spi-userspace.dir/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/spi-userspace.dir/main.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/analog/linux-userspace-examples/spi_example_linux/src/main.c > CMakeFiles/spi-userspace.dir/main.c.i + +CMakeFiles/spi-userspace.dir/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/spi-userspace.dir/main.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/analog/linux-userspace-examples/spi_example_linux/src/main.c -o CMakeFiles/spi-userspace.dir/main.c.s + +CMakeFiles/spi-userspace.dir/main.c.o.requires: + +.PHONY : CMakeFiles/spi-userspace.dir/main.c.o.requires + +CMakeFiles/spi-userspace.dir/main.c.o.provides: CMakeFiles/spi-userspace.dir/main.c.o.requires + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/main.c.o.provides.build +.PHONY : CMakeFiles/spi-userspace.dir/main.c.o.provides + +CMakeFiles/spi-userspace.dir/main.c.o.provides.build: CMakeFiles/spi-userspace.dir/main.c.o + + +CMakeFiles/spi-userspace.dir/spi.c.o: CMakeFiles/spi-userspace.dir/flags.make +CMakeFiles/spi-userspace.dir/spi.c.o: ../spi.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/spi-userspace.dir/spi.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/spi-userspace.dir/spi.c.o -c /home/analog/linux-userspace-examples/spi_example_linux/src/spi.c + +CMakeFiles/spi-userspace.dir/spi.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/spi-userspace.dir/spi.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/analog/linux-userspace-examples/spi_example_linux/src/spi.c > CMakeFiles/spi-userspace.dir/spi.c.i + +CMakeFiles/spi-userspace.dir/spi.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/spi-userspace.dir/spi.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/analog/linux-userspace-examples/spi_example_linux/src/spi.c -o CMakeFiles/spi-userspace.dir/spi.c.s + +CMakeFiles/spi-userspace.dir/spi.c.o.requires: + +.PHONY : CMakeFiles/spi-userspace.dir/spi.c.o.requires + +CMakeFiles/spi-userspace.dir/spi.c.o.provides: CMakeFiles/spi-userspace.dir/spi.c.o.requires + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/spi.c.o.provides.build +.PHONY : CMakeFiles/spi-userspace.dir/spi.c.o.provides + +CMakeFiles/spi-userspace.dir/spi.c.o.provides.build: CMakeFiles/spi-userspace.dir/spi.c.o + + +# Object files for target spi-userspace +spi__userspace_OBJECTS = \ +"CMakeFiles/spi-userspace.dir/main.c.o" \ +"CMakeFiles/spi-userspace.dir/spi.c.o" + +# External object files for target spi-userspace +spi__userspace_EXTERNAL_OBJECTS = + +spi-userspace: CMakeFiles/spi-userspace.dir/main.c.o +spi-userspace: CMakeFiles/spi-userspace.dir/spi.c.o +spi-userspace: CMakeFiles/spi-userspace.dir/build.make +spi-userspace: CMakeFiles/spi-userspace.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable spi-userspace" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/spi-userspace.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/spi-userspace.dir/build: spi-userspace + +.PHONY : CMakeFiles/spi-userspace.dir/build + +CMakeFiles/spi-userspace.dir/requires: CMakeFiles/spi-userspace.dir/main.c.o.requires +CMakeFiles/spi-userspace.dir/requires: CMakeFiles/spi-userspace.dir/spi.c.o.requires + +.PHONY : CMakeFiles/spi-userspace.dir/requires + +CMakeFiles/spi-userspace.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/spi-userspace.dir/cmake_clean.cmake +.PHONY : CMakeFiles/spi-userspace.dir/clean + +CMakeFiles/spi-userspace.dir/depend: + cd /home/analog/linux-userspace-examples/spi_example_linux/src/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/analog/linux-userspace-examples/spi_example_linux/src /home/analog/linux-userspace-examples/spi_example_linux/src /home/analog/linux-userspace-examples/spi_example_linux/src/build /home/analog/linux-userspace-examples/spi_example_linux/src/build /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/spi-userspace.dir/depend + diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/cmake_clean.cmake b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/cmake_clean.cmake new file mode 100644 index 0000000..eaa2d14 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/spi-userspace.dir/main.c.o" + "CMakeFiles/spi-userspace.dir/spi.c.o" + "spi-userspace.pdb" + "spi-userspace" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/spi-userspace.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.internal b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.internal new file mode 100644 index 0000000..fc4f58c --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.internal @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +CMakeFiles/spi-userspace.dir/main.c.o + /home/analog/linux-userspace-examples/spi_example_linux/src/main.c + /home/analog/linux-userspace-examples/spi_example_linux/src/spi.h +CMakeFiles/spi-userspace.dir/spi.c.o + /home/analog/linux-userspace-examples/spi_example_linux/src/spi.c + /home/analog/linux-userspace-examples/spi_example_linux/src/spi.h diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.make b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.make new file mode 100644 index 0000000..ffe09ee --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/depend.make @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +CMakeFiles/spi-userspace.dir/main.c.o: ../main.c +CMakeFiles/spi-userspace.dir/main.c.o: ../spi.h + +CMakeFiles/spi-userspace.dir/spi.c.o: ../spi.c +CMakeFiles/spi-userspace.dir/spi.c.o: ../spi.h + diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/flags.make b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/flags.make new file mode 100644 index 0000000..929cc6e --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# compile C with /usr/bin/cc +C_FLAGS = + +C_DEFINES = + +C_INCLUDES = + diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/link.txt b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/link.txt new file mode 100644 index 0000000..ea1f075 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -rdynamic CMakeFiles/spi-userspace.dir/main.c.o CMakeFiles/spi-userspace.dir/spi.c.o -o spi-userspace diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/main.c.o b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/main.c.o new file mode 100644 index 0000000000000000000000000000000000000000..426467ec7176a8573ac18598db7ef8d606998729 GIT binary patch literal 3176 zcmbuCUuYaf9LIl~P4#RW)7I1!DrP0A#*l9QRj$_;w-${;F(GZGP+_~-+cZb-_RhUM zy%^Ag3i={6P|$}$_O3ppp^pW7P;D_nL0?3~cUvEPlY$T4!x4YK*_q4S-YtSoxckj~ zW`5t_Z+UVARYRe1HhVlv-o+svh?+WIQ zbqYR(l+kx(A$SSvXu}%C$Mde^In;*$-U}3#6Yf#W8Ff6*Fn_F>oIjrT+2;WUNT<51 zvcRohbSP#@=NI2QBOEzAd*&1$7=Dwq@V+cHvk24lekBZV~_3w|_GkI>>= zD;EuYXzicd+k<4q8BL^}_a};l44Nr@5@5;7WSz9;=e445dA@dL{w)pXGPcu)ZUE&I z+L38}`uw=I(&~N4dwshBW>1|up^ctfEV+JZ;&jHfyu6mwU(qLz&XgFO`e^F7K6&ir zkTT6~U-azt!sG33b86Qo6F|kEZcRm{XiG3aQ97FnyE@<=MmjlR6`t%^AMz(U_|r%Z zNcn%lSKwWMeI2U-j>Pcs7)}ov=?h)D0My>Z5AgxM3-m4e8=>hOE{U$=55G1IlHg| zc+E}Uv)tm6mc-?A1iiSD^Q}d+z8BhM(es?FrTb3V z2R&{17U+w`BIsT|9N76>&T({%26|EJZ^pN?9-6C`QS7q&ZmKjDbp zLGA4@4v87<7?!!#O2G`TG1yvjvvzeul`f$OYx)O zMEp6Nlbgt2FnYg`zql`g&+>#wUv9LPny{})eKx_r%FzvRF8st=8b@=dIpJ^cN%}LL met(GkMg56)3w4LT+Hc~#+@kU6j(78)=l>VbA6asX`u_t3shM#A literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/progress.make b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/progress.make new file mode 100644 index 0000000..6a9dc74 --- /dev/null +++ b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/spi.c.o b/spi_example_linux/src/build/CMakeFiles/spi-userspace.dir/spi.c.o new file mode 100644 index 0000000000000000000000000000000000000000..cd1e7906458ba520731172d7ed29481ead583883 GIT binary patch literal 4064 zcmbtXU1%It6h4z(wbs_GO(lg2nP8OEn$5)>^f}mTIA(ux@rIc5U{jvlAML z=vI6vsL((jeB9KRSbWGsi;Yw%8YC1SN>HCm6)ECNiw|9J(Q{_bF*hfZ(C7)1d+&F@ z`<-v@Jv+1e{(<2ank)+>Ecgui|18G{S$Z+^1W4zqV?9nIHv zqsH#_HC~U@nA?!X%c9W{`pEnTAA^w^8}rdA8mZ978T4^xgZt4Msj)F1_p`D)3!k;p8aijEZs9f44cJzfYQMl# zQ@px_{jf$_ocfIzJXLE8>nG?xj{R0=zIF)Dz7=a~3-%9lzrz`<9kK>(TwgnE4F>ZG zXMP5CZ^o<(7Vei7pS=^*PCu^c4{PVz8udr>Sd-`4(c}4Ur%vrYu&zA|aN7yjOgARK z=llF-Wvydg%F|}Yerim98*rYe?6pTT`7t+V`z5>LXFT72^~g(GHzSck&AY*@ecH?W zu3aeQTp>pDJU5eDL0eaEB=1+c%C6USy5!|pcpcp+`nvj+vg_W1u1V8+vOl)(Wr~$i z*OU9Nl=JCe_rh%h8Vd*D;Qsx4?apH(<3)eGdpKXrcqO|(xhI+G>KzZjp7(kNlBvF3 zA<7z24L$4PaQpA5xme_r5FmzsQ4vF>sEEORtKbI$WHlbv$?7LCJ$^0Jd6B22o^~>R zoN?nZjV{A1I(ZE6)2(6`j<*^28*d5;z1Soamxcpt;P| zop_Gs89vQ;3*uBQa{ejCA60mt;`1;#FX{_l@FDI{-iHOm_6-AXHgL8J+KJerVU#K5XPQ>u1csO+Qto zFL^&?T=WG$tN7R1&&P@{IDNsS(EBrI;HIAir7w9GmA>FVD88Kcb;TF_N5-|EKMgz) zS`Pj{#?PsKoZn{PHsb>dA7Y&JTMYiE25#Q(7mQ0i$a`asaoK;tFDkyxzAr1j;8z&e z_q)KjzOO~b^?ltibhaD!C9hu6H}?&am3In$W&~T`3)>UY^W3pa(sw6(Naiwr29hI{ z3M9Q!ILMX?1-FQE#ggwP5597&D|k?wIsZrB#MdTM;K>IO+k%()m;EPP?;S#L bmkZ(}8W^GTKZ0{n>lY~*2K|UKL$Ch_>y`3H literal 0 HcmV?d00001 diff --git a/spi_example_linux/src/build/Makefile b/spi_example_linux/src/build/Makefile new file mode 100644 index 0000000..162ce90 --- /dev/null +++ b/spi_example_linux/src/build/Makefile @@ -0,0 +1,208 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.10 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/analog/linux-userspace-examples/spi_example_linux/src/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 -H$(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/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/analog/linux-userspace-examples/spi_example_linux/src/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named spi-userspace + +# Build rule for target. +spi-userspace: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 spi-userspace +.PHONY : spi-userspace + +# fast build rule for target. +spi-userspace/fast: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/build +.PHONY : spi-userspace/fast + +main.o: main.c.o + +.PHONY : main.o + +# target to build an object file +main.c.o: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/main.c.o +.PHONY : main.c.o + +main.i: main.c.i + +.PHONY : main.i + +# target to preprocess a source file +main.c.i: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/main.c.i +.PHONY : main.c.i + +main.s: main.c.s + +.PHONY : main.s + +# target to generate assembly for a file +main.c.s: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/main.c.s +.PHONY : main.c.s + +spi.o: spi.c.o + +.PHONY : spi.o + +# target to build an object file +spi.c.o: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/spi.c.o +.PHONY : spi.c.o + +spi.i: spi.c.i + +.PHONY : spi.i + +# target to preprocess a source file +spi.c.i: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/spi.c.i +.PHONY : spi.c.i + +spi.s: spi.c.s + +.PHONY : spi.s + +# target to generate assembly for a file +spi.c.s: + $(MAKE) -f CMakeFiles/spi-userspace.dir/build.make CMakeFiles/spi-userspace.dir/spi.c.s +.PHONY : spi.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... spi-userspace" + @echo "... edit_cache" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... spi.o" + @echo "... spi.i" + @echo "... spi.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/spi_example_linux/src/build/cmake_install.cmake b/spi_example_linux/src/build/cmake_install.cmake new file mode 100644 index 0000000..c3c67f1 --- /dev/null +++ b/spi_example_linux/src/build/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/analog/linux-userspace-examples/spi_example_linux/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 "FALSE") +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/analog/linux-userspace-examples/spi_example_linux/src/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/spi_example_linux/src/build/spi-userspace b/spi_example_linux/src/build/spi-userspace new file mode 100755 index 0000000000000000000000000000000000000000..d85587f6fa7ab7f4974e7713136d1f2f1f3d8cf6 GIT binary patch literal 13976 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 YCXCc8vi#0fN&l^|mUu@54fX5)H^SSgEdT%j literal 0 HcmV?d00001 From 5c61773dd99d2f8a7a103165a805b50b37a1dc00 Mon Sep 17 00:00:00 2001 From: SSingh5845 <157567589+SSingh5845@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:27:57 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 804fb52..4e042f1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The Petalinux 2019.1 projects are posted on [Petalinux project for Linux Userspa The demos are provided as sources files. In order to use the demos, create in SDK a new linux application project and copy the provided demo sources into the new project sources folder, and then refresh the project sources. The demos are further described as used with Digilent Pmods specific to the demonstrated communication (PmodACL2 for SPI, PmodTMP3 for I2C, PmodUSBUART for UART). Still, if these Pmods are not available, the demos can be started and the protocols can be visualized over the specific communication lines. -## SPI Demo +## SPI Demo test It is implemented using spidev linux spi driver. It demonstrates a simple SPI communication with [PmodACL2](https://store.digilentinc.com/pmod-acl2-3-axis-mems-accelerometer/). The demo configures the PmodACL2 device and repeatedly retrieves acceleration values for the three axis.