From 628c3a6d68d95f406ef11dabed364441389231a0 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sat, 24 Aug 2019 22:35:06 +0300 Subject: [PATCH] first commit --- CMakeLists.txt | 11 + build/CMakeCache.txt | 353 ++++++++++ build/CMakeFiles/3.15.1/CMakeCCompiler.cmake | 76 ++ .../CMakeFiles/3.15.1/CMakeCXXCompiler.cmake | 79 +++ .../3.15.1/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 16384 bytes .../3.15.1/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16400 bytes build/CMakeFiles/3.15.1/CMakeSystem.cmake | 15 + .../3.15.1/CompilerIdC/CMakeCCompilerId.c | 665 ++++++++++++++++++ build/CMakeFiles/3.15.1/CompilerIdC/a.out | Bin 0 -> 16544 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 644 +++++++++++++++++ build/CMakeFiles/3.15.1/CompilerIdCXX/a.out | Bin 0 -> 16552 bytes .../CMakeDirectoryInformation.cmake | 16 + build/CMakeFiles/CMakeOutput.log | 419 +++++++++++ build/CMakeFiles/Makefile.cmake | 49 ++ build/CMakeFiles/Makefile2 | 106 +++ build/CMakeFiles/TargetDirectories.txt | 3 + build/CMakeFiles/cmake.check_cache | 1 + build/CMakeFiles/fsim.dir/CXX.includecache | 22 + build/CMakeFiles/fsim.dir/DependInfo.cmake | 23 + build/CMakeFiles/fsim.dir/build.make | 98 +++ build/CMakeFiles/fsim.dir/cmake_clean.cmake | 10 + build/CMakeFiles/fsim.dir/depend.internal | 7 + build/CMakeFiles/fsim.dir/depend.make | 7 + build/CMakeFiles/fsim.dir/flags.make | 10 + build/CMakeFiles/fsim.dir/link.txt | 1 + build/CMakeFiles/fsim.dir/main.cpp.o | Bin 0 -> 3728 bytes build/CMakeFiles/fsim.dir/progress.make | 3 + build/CMakeFiles/progress.marks | 1 + build/CMakeFiles/vb01.dir/CXX.includecache | 22 + build/CMakeFiles/vb01.dir/DependInfo.cmake | 23 + build/CMakeFiles/vb01.dir/build.make | 98 +++ build/CMakeFiles/vb01.dir/cmake_clean.cmake | 10 + build/CMakeFiles/vb01.dir/depend.internal | 7 + build/CMakeFiles/vb01.dir/depend.make | 7 + build/CMakeFiles/vb01.dir/flags.make | 10 + build/CMakeFiles/vb01.dir/link.txt | 1 + build/CMakeFiles/vb01.dir/main.cpp.o | Bin 0 -> 3728 bytes build/CMakeFiles/vb01.dir/progress.make | 3 + build/Makefile | 178 +++++ build/cmake_install.cmake | 49 ++ build/vb01 | Bin 0 -> 17976 bytes main.cpp | 6 + quaternion.h | 34 + vec3.h | 17 + 44 files changed, 3084 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 build/CMakeCache.txt create mode 100644 build/CMakeFiles/3.15.1/CMakeCCompiler.cmake create mode 100644 build/CMakeFiles/3.15.1/CMakeCXXCompiler.cmake create mode 100755 build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_C.bin create mode 100755 build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_CXX.bin create mode 100644 build/CMakeFiles/3.15.1/CMakeSystem.cmake create mode 100644 build/CMakeFiles/3.15.1/CompilerIdC/CMakeCCompilerId.c create mode 100755 build/CMakeFiles/3.15.1/CompilerIdC/a.out create mode 100644 build/CMakeFiles/3.15.1/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 build/CMakeFiles/3.15.1/CompilerIdCXX/a.out create mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/CMakeFiles/CMakeOutput.log create mode 100644 build/CMakeFiles/Makefile.cmake create mode 100644 build/CMakeFiles/Makefile2 create mode 100644 build/CMakeFiles/TargetDirectories.txt create mode 100644 build/CMakeFiles/cmake.check_cache create mode 100644 build/CMakeFiles/fsim.dir/CXX.includecache create mode 100644 build/CMakeFiles/fsim.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/fsim.dir/build.make create mode 100644 build/CMakeFiles/fsim.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/fsim.dir/depend.internal create mode 100644 build/CMakeFiles/fsim.dir/depend.make create mode 100644 build/CMakeFiles/fsim.dir/flags.make create mode 100644 build/CMakeFiles/fsim.dir/link.txt create mode 100644 build/CMakeFiles/fsim.dir/main.cpp.o create mode 100644 build/CMakeFiles/fsim.dir/progress.make create mode 100644 build/CMakeFiles/progress.marks create mode 100644 build/CMakeFiles/vb01.dir/CXX.includecache create mode 100644 build/CMakeFiles/vb01.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/vb01.dir/build.make create mode 100644 build/CMakeFiles/vb01.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/vb01.dir/depend.internal create mode 100644 build/CMakeFiles/vb01.dir/depend.make create mode 100644 build/CMakeFiles/vb01.dir/flags.make create mode 100644 build/CMakeFiles/vb01.dir/link.txt create mode 100644 build/CMakeFiles/vb01.dir/main.cpp.o create mode 100644 build/CMakeFiles/vb01.dir/progress.make create mode 100644 build/Makefile create mode 100644 build/cmake_install.cmake create mode 100755 build/vb01 create mode 100644 main.cpp create mode 100644 quaternion.h create mode 100644 vec3.h diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..68ab979 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 2.6) +project(vb01) + +include_directories(/usr/include/GLFW) +include_directories(/usr/include/glm) +include_directories(/usr/include/glad) + +set(CMAKE_BUILD_TYPE Debug) +link_directories(/usr/lib) + +add_executable(vb01 main.cpp) diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..9c8506b --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,353 @@ +# This is the CMakeCache file. +# For build in directory: /home/dominykas/c++/FSim/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 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 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//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 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/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_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=vb01 + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/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 +vb01_BINARY_DIR:STATIC=/home/dominykas/c++/FSim/build + +//Value Computed by CMake +vb01_SOURCE_DIR:STATIC=/home/dominykas/c++/FSim + + +######################## +# 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/dominykas/c++/FSim/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=15 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//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 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/dominykas/c++/FSim +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//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.15 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.15.1/CMakeCCompiler.cmake b/build/CMakeFiles/3.15.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..8e44fb9 --- /dev/null +++ b/build/CMakeFiles/3.15.1/CMakeCCompiler.cmake @@ -0,0 +1,76 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "9.1.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_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0;/usr/lib;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.15.1/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.15.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..2ceed01 --- /dev/null +++ b/build/CMakeFiles/3.15.1/CMakeCXXCompiler.cmake @@ -0,0 +1,79 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "9.1.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;cxx_std_20") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_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 "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9.1.0;/usr/include/c++/9.1.0/x86_64-pc-linux-gnu;/usr/include/c++/9.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0;/usr/lib;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..88258131e8a745fbd6255d522adf03e195132a19 GIT binary patch literal 16384 zcmeHOZ){sv6~B&~Hl?lOb$4rK3>NHz#%yuZ~^p z=PIdIRw-k`bb)F@qZ(5wd;-xAlMvI;CP?YDPLn_@(z=X-C@mF%bt46aI_PSC=e~QK z_g-H3z&`L{??lh%-rxCi?>p~4=RUu49!qp})cAaY$uG7F>V<+P5>r3}DclcEc0W*ZCts=bnDY#Yligf2NfQDw7wSC7u9gI< z@8nn20L)ol9WO-2ppg8m@b&a|XFKYWU5m17QFhEvsqvU| zJSir0ysZ2=c{^l8%t@DM*Ht4$?UoSrX7f*(uwc%155P`^T50@u#$n&B#+xfHlj{7K ztFBm^&Gc>BxHg+=%4TwD=fH#Fj#=~kgwnrD`H3riT9@SKb%o1&9N1nQ zG@oDy4N!y0gupuLr)9HA=z9N1QXk0VlG)7RG`b|xi$=0w=)=iOj*S>yk;x6@^&78Fq#1mIRg8NMK-7LT}R*E)!7!;*GJYz?w99juId`$bNwR~Q!?{) zSX!RJGOrOARGj$xioaiiD!$F?`-t%gb^St7(~xoQPi`}DzPFTnamj+4vo$4C7M$)$ zrfCb#Yl~zzEI40#w(+p<@5Ws@?~x8kJGz)y2fjt#$%E;zGRhTt>>XxX?P0e|2VFV zx1J|I{{iAU>!1E0xMC zwHwj&^`0Gw)USG+rXkJ_%(UxQMFsi$^B{Ehz(@JWHLYB_bS`m|RF5UDX(zPthPMKE z9DIIWu>NNgzQj#NFFMehy*NeFU+nW;GPiOhPSWm2cbB{LObQ)?HNb=_>!NtNd`SrU z*#4MqJqMaUT{+_Nx>m0woq|VR1iT1%5%415MZk-I7XdEo_uKI97!;9KGU4841!cQI3c#bYb@AEqmnhrz?wE0v?* zC%|6?C!+VWM83njg>NM2Td{aS-EsVUK=?`=C*Xsg+(r8W`9_JbjW|Z(Q@-nq1%gl1 z#Fxzf3JggNM-Prukjr<99f9CCYdQms-|!~_q49Z%K={ep_CWI!^R+Nz1i~XP0$v2X2zU|jBH%^9i+~paF9Kc! zKJpRZ{6Eh3!=sxd=8HK(DjyJ;ppqt4-r!xT&v}I_RG;$&DgTv-^9$+ukBH^(-Kyke zUnK?dv)VL0fPyH$kZ7-xf6VNP%ZgK8EK#G$X7WK*e}UqS$`Ow{p>WCpCSv=4SIqeU zlB#%fE9ZAZO$=|4WuN1N$4lA&wUWQD`f9q;_y6OA^UCKMoAWrg$KzW0_}lS1 z!Pm`>FBH5U>^N4JTIY6rCZE}kFBW_s*zuWsX*(XM=HuJ(dNCBTB4*o<$?$z;mHLqZ z&G(ZXUn<W-kUGl(5;&;j4Ht{=6L(3=KAM?cZiUpEQx~bgo z+kw|0-+PxM{*>QM_)!NQRycoep(}~fn0=Oc@_pJZ@!4@RfRlgz9+Xb-aTJHoCH~(9 z?l%7)OZ_Dx96|$xtPx3bo$pJK`cQqa>>j0PVQ&88IFTALd%e9T?Siw`!$s-8LGXRf z?x!R^d!1ZYew^!Vo($mZb$cgpAJ&Pp?%-aD&t6yO<@{&gUz>ru<@t945Amce{G`NZ z*D0idyVV680`68HaRj(qUB%aveZ)E7ZuJqAhfj47&iae*EB%mK z=WEqDzX{x}ZsLm4ch*fz0e72c4ZeR@E1xz-B?*y!(O)o%MhQt%{bHsPLN|u>eyW8i zQoTc7AI#?al36`v1>X zX+2dM9v+2>rKi(mY^w3@Mvzpx|L-5Iy5$)XTI`2VLTH04ff-wg;=AnbU1*Uq+Bm%g*3@yIN;^?rE>;pFnCLiKf zCWl&?gCdg48|lbkt`zAjWl+YINht^ytI0?X3Mm^(7KcP6HJXDzlcSVIN)Dw9#Y{eD z>*$ab(%B>#h=?qji5Te-Lque~PNa~RH8_#o~0T{C|b{ zPaFYb_w3`i!=CrK%=tNx^_}bIX=TsnFG5OFaax~Na*lrzLYgAmJL_2K9i^3=P-eAxaf z1Xg?APcdKGD=O}^{|`>}MH>JB literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.15.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..7e642e225155d5d204270e8f8cbf8e6fb7e95e0e GIT binary patch literal 16400 zcmeHOU2Ggz6~60@lMRX2PHMMqQt-6p!BOzU`KfVIIoY+n&RDGT>$Ha8OxL?>d)xgn zyR*fP0=482u>_Y0P>D*Ff_Q+33Kgk850Q{Vs!}0}5+O<;tw)G)-FFYW@9BcO6`<%}^;9Qw;7rsM&|K&oi8s+{`>_X0<|ACTP1?;<_sJVWGYw-jB#2>~$|bRK9|jRNXB z`867VIm=7qX=n_j$<1y!W zVodOOiTpWvw{jzxqb}0EYgP=~?HcwL^G_&PFlW2{U`L@QjaxGg`vDqnskr!P{>zzVx|)yDq{e5OEo{f(ra#lRs-`ADQq~raOp=4aiDoVg-O1Xp9NHl8Z zu(uhR<#0XG6}1eT1z-)cYhFJtPu&p28AChWnDFU?q0#S6yNOTP2c z2IZUI?k!wAVievorhY%SuRlCp{RBKF8PhdQl671J&0@ooVE*@0#&pL;^fO)kGi2N6 ztp;%YD7ju)yi(gViH^?`2mS9#{rk|~*l^P*%o*q2*=3xY_Zps;jf*#}dT`K34t&Kc z!?jJ_3-&m_$&Nt~i~QC@##BcYHjTnHtHwClu@gGQhBi^TP}6+NOX&e}5bS-9zA`@P+F}A%Eqkp&O`rGIZTIZA>@(#t)B!FD$F8{qc+^ zbc4~$4)n$#oTBmizXxh&K=Z{wo zxxB8WD~YGzk{bax0&WD{2)Ge&Bj85Bjer{gHv(=1+z9-?M!-{g1F9m>yQgRGjvTzZ z$_$&aF)MqxwS5pJ5|0ce4nw{G0-p8W`{B`5zI&bh3p}<$`^~vx@gd;N?-q-bz)u5z z1vnDEpGEQ>eb)NOBSNKlB&j*O(JO0z)1E1VQ_X_!D39)T(On^`M&M@e&J5kkD zv;2!-h-z^3!|@%E%Xfi2{<^PK_4*qh_lEr1^s-78Nd$6a#&nw`^eUAizaLJ8;8v!>0ZUo#2xDjw8;6}iWfE$7T zxd?DxALsGGqnIQoSDCUZFBTO{r3RUWiZGWDX|-ad#6rjfm2`>n2k)dl=NGQ0KIapz zqdw;u;`1L8%ip_M%*Z|^2lBJpB}xj!JVT@bl7B>X#XRv<#2bk>5NEc68g=A|$DJV@ zbAXZ9{)3{L4?t2C-rUOh&C$f*4YKTWoZ#_N_Aik9ed^P6rSJd72j`bBH8$sS?(XW^ zp*2J1^agFazFBWwO5cuqVU=)Re>q-N%2O}Ly<*m$6iPxb{L0{~5GXHX^z-#D_p@B^ zx+uq22#$X_?h}07%JG$g*F!lDtBVt8Z33??pV5hu?zK162w2 zcax%xRT_6z$``Mz52T+4!S^}4c>@AcRbk!!NaBmvzYlN^Wb`}N)f$N}t~>ZB;PNJ- zymB5_C)~N7gVN99b@(9QmFgPsx5Y|z3P%91RHu*v{2rc!jTZo~RKM^|!ZliNo5<#I zz;Qm#`iKn@UtCY|ZNi;(8Q&-W&U%Lz0oQEv`Wqhn*j{7iUrTOvK2F>SwTBib%O_(2;y_Z$fJh0M^NZY&Hj;eVVNG6*!f58!Nb z8FMs}j$v^~_ow#+`+B{TRzfW5#&Rgsj{i`=SIQVR%Ap-*=Qs;D)iVy8vH44WtHU7cs7^F zq{})c$g=Td1Pz3a@fW%kABRtQc6v4=D{u7pC@rPY7+7#mS*S~>EVvEsBB?|a#>#*% z_|V6a&`{2xNJr?fx>K-XOZU)!(!hN&+_Lc9tBChc%z0l-VyVk*yl-P3CVSq$YGyDQHaPP*CE4+{4dRM1D_nH3$Y-?@yrTx1OAQ0=R-a?=8Uw{Cw zJ&(`(F|H@(x?x@)Y{zl@HQ3_$vpqi#T%rw5Gsx`3_RL=gq1|2tNV`>WzE24)oe$ez z1A*P1_fd^x&+~NJbN|oKKwmt6-d8n~J&(isIF_B}po18xmqct&KWCJ1wzqR$dnF}k x1jykm-MILB2tqs`j>}5Gc<#_FQ8O+4jSlBLE-T{vD%l@wR~qlLB5|kvzX39aReS&d literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/3.15.1/CMakeSystem.cmake b/build/CMakeFiles/3.15.1/CMakeSystem.cmake new file mode 100644 index 0000000..d6d2fcb --- /dev/null +++ b/build/CMakeFiles/3.15.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.2.4-arch1-1-ARCH") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.2.4-arch1-1-ARCH") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.2.4-arch1-1-ARCH") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.2.4-arch1-1-ARCH") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.15.1/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.15.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..917e8b9 --- /dev/null +++ b/build/CMakeFiles/3.15.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,665 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.15.1/CompilerIdC/a.out b/build/CMakeFiles/3.15.1/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..f3a1e6f24dab5753cb0e3e91b1250c71d1fd6e89 GIT binary patch literal 16544 zcmeHOZHya786MlY+=V2zljcgAAa0u?u~FCHCFDPaqVlj7!X%7BQAm{aFlJWCB@Y4<~JB2mjPvd1YEsxLy4{ji9BG4hL%AIl3=A4}#FIl*Ir z;<@Dz=rFNFTTBOU8ClF4mb`mre}~YTKjRqq~Hb8XeKHxoU2zP&0DX(UHMo zrJNhpCyMAfRjQQ9Q?pFl8p`%q%(eLQN&fgc*EbYaAiLaexc_s14X?3Is+amV<5www z61Vh>b2;M170a&Ig;xoWx$v(M9(Up2CH%%-Artm(><^r7+HgK+)ZMn>*q=Dvwc&iv zpzgj6r$-gLc+z9QW58p;W58p;W58p;W58qJKhD5gp^yGUoxRhgp6mF{Rw2}9uNr>y zC3SY8>zb?^_1oS^HLf338-G-1U%h*9G(Fex8Vrrqxz!aZ`mckf+5H`G|ND7$uKym! znd^8R#qRq?H-s)z=oRM8P|pkozD5%4=cWCwpP|_NP;J~*=il6`&fgEHz8BQ%4~=yY zAV~qb%$t*;o}rdMwr{5Y6sSdg$6yYXCNhB@)+c}V!C!@iBHI=jxp>k7niO+f_w@lAmk>Xcs` z5!(sJ3Wzs{cp?}+;~!kT+os|OCa;ZTxr!T1>o-?ZIYNtIALBBu_uNQjUf+r9Wij!3 zP@IopV*T3>&5A73B1@h-U7<3sMUGJUL(*G_QzUU6EvEIB5ZxqMbW$ddlS@ckuR9`Z?0o^;sJ5nzWA1u0eBcm$F?k`RpdLP{fPJCr^UxgE2CHOvZ;&2x!cErjD zM6kJD->waakhsy-J}h|swbOo0^L}&UYel<$5fG0EULWnWhqo$mJ7VPnaF?xbi$5yV zw)lq^1;P7gnYd@V6?lKP!yf_M54%$iy7L&lZb#kneN!i%miuGR6u&II@M z{VmzM+xdpX+w?ae#D{Ow;?kh`a|Lj}Sls^~1$-^=qtO2WKfgZ?xYG1)Wxgo!#rB~Y6vy2^>wqgwt5)VT;A{Ndf}e-1`8MLBb)VAXU0jfO zx9E*qmi&M66Tp#&OSJz%zDop?7vTs)e>+I_mX{D^vRA0zZY9O@6hA`t9REeYF^-!b z+)sn`K1TJ6)(+=2ahJjwDr+3|ic_UC!RGoZ(zDf{!dlO@kj zD9j@Mj)DT`670|8Q&*0C=N+fw6NT{rf^C-U#huxq52U&J-!^nxlQ&HgcvHSBlnk^2p35wM4n859KhMv5VXZPIwzEpDGULAj1zvlep7FSo_cvd_lY_+lgZ=nA z{u*>>!u~w}xIqJ<2s+ym`?LH#=>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.15.1/CompilerIdCXX/a.out b/build/CMakeFiles/3.15.1/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..8be0f05ca13138d0ea35a31598fadc246960b86e GIT binary patch literal 16552 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 literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5b90031 --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/dominykas/c++/FSim") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/dominykas/c++/FSim/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..33526aa --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,419 @@ +The system is: Linux - 5.2.4-arch1-1-ARCH - x86_64 +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/dominykas/c++/FSim/build/CMakeFiles/3.15.1/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/dominykas/c++/FSim/build/CMakeFiles/3.15.1/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_da14f/fast && /usr/bin/make -f CMakeFiles/cmTC_da14f.dir/build.make CMakeFiles/cmTC_da14f.dir/build +make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_da14f.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_da14f.dir/testCCompiler.c.o -c /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_da14f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da14f.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_da14f.dir/testCCompiler.c.o -o cmTC_da14f +make[1]: Leaving directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_baf02/fast && /usr/bin/make -f CMakeFiles/cmTC_baf02.dir/build.make CMakeFiles/cmTC_baf02.dir/build +make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.15/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto +Thread model: posix +gcc version 9.1.0 (GCC) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/cc1 -quiet -v /usr/share/cmake-3.15/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccXSxbTS.s +GNU C17 (GCC) version 9.1.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../x86_64-pc-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include + /usr/local/include + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed + /usr/include +End of search list. +GNU C17 (GCC) version 9.1.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 07f790f36f3287770d39e49f2618fa39 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o /tmp/ccXSxbTS.s +GNU assembler version 2.32 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.32 +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' +Linking C executable cmTC_baf02 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_baf02.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -o cmTC_baf02 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto +Thread model: posix +gcc version 9.1.0 (GCC) +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_baf02' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEZ9yIY.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 -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_baf02 /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../.. CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_baf02' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_baf02/fast && /usr/bin/make -f CMakeFiles/cmTC_baf02.dir/build.make CMakeFiles/cmTC_baf02.dir/build] + ignore line: [make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.15/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.1.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/cc1 -quiet -v /usr/share/cmake-3.15/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccXSxbTS.s] + ignore line: [GNU C17 (GCC) version 9.1.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (GCC) version 9.1.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 07f790f36f3287770d39e49f2618fa39] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o /tmp/ccXSxbTS.s] + ignore line: [GNU assembler version 2.32 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.32] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking C executable cmTC_baf02] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_baf02.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -o cmTC_baf02 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.1.0 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_baf02' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEZ9yIY.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 -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_baf02 /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../.. CMakeFiles/cmTC_baf02.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccEZ9yIY.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_baf02] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] + arg [CMakeFiles/cmTC_baf02.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/x86_64-pc-linux-gnu/9.1.0/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0;/usr/lib;/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_55fc4/fast && /usr/bin/make -f CMakeFiles/cmTC_55fc4.dir/build.make CMakeFiles/cmTC_55fc4.dir/build +make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_55fc4.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_55fc4.dir/testCXXCompiler.cxx.o -c /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_55fc4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55fc4.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_55fc4.dir/testCXXCompiler.cxx.o -o cmTC_55fc4 +make[1]: Leaving directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_74ef6/fast && /usr/bin/make -f CMakeFiles/cmTC_74ef6.dir/build.make CMakeFiles/cmTC_74ef6.dir/build +make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto +Thread model: posix +gcc version 9.1.0 (GCC) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccIPBKCZ.s +GNU C++14 (GCC) version 9.1.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../x86_64-pc-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0 + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/x86_64-pc-linux-gnu + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/backward + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include + /usr/local/include + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed + /usr/include +End of search list. +GNU C++14 (GCC) version 9.1.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 651b755a2ab2663904afb50163356b15 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccIPBKCZ.s +GNU assembler version 2.32 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.32 +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +Linking CXX executable cmTC_74ef6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_74ef6.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_74ef6 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto +Thread model: posix +gcc version 9.1.0 (GCC) +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_74ef6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cczPWUz2.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 -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_74ef6 /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../.. CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_74ef6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/x86_64-pc-linux-gnu] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/backward] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0] ==> [/usr/include/c++/9.1.0] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/9.1.0/x86_64-pc-linux-gnu] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/backward] ==> [/usr/include/c++/9.1.0/backward] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/9.1.0;/usr/include/c++/9.1.0/x86_64-pc-linux-gnu;/usr/include/c++/9.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_74ef6/fast && /usr/bin/make -f CMakeFiles/cmTC_74ef6.dir/build.make CMakeFiles/cmTC_74ef6.dir/build] + ignore line: [make[1]: Entering directory '/home/dominykas/c++/FSim/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.1.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccIPBKCZ.s] + ignore line: [GNU C++14 (GCC) version 9.1.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/x86_64-pc-linux-gnu] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../include/c++/9.1.0/backward] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (GCC) version 9.1.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 651b755a2ab2663904afb50163356b15] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccIPBKCZ.s] + ignore line: [GNU assembler version 2.32 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.32] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking CXX executable cmTC_74ef6] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_74ef6.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_74ef6 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.1.0 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_74ef6' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cczPWUz2.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 -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_74ef6 /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../.. CMakeFiles/cmTC_74ef6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cczPWUz2.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_74ef6] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] + arg [CMakeFiles/cmTC_74ef6.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/x86_64-pc-linux-gnu/9.1.0/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0;/usr/lib;/lib] + implicit fwks: [] + + diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..9a0bf0b --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,49 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# 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.15.1/CMakeCCompiler.cmake" + "CMakeFiles/3.15.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.15.1/CMakeSystem.cmake" + "/usr/share/cmake-3.15/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.15/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.15/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.15/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.15/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.15/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "/usr/share/cmake-3.15/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.15/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.15/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.15/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.15/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/vb01.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..33a67bc --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,106 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# 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/dominykas/c++/FSim + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/dominykas/c++/FSim/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/vb01.dir/all + +.PHONY : all + +# The main recursive "clean" target. +clean: CMakeFiles/vb01.dir/clean + +.PHONY : clean + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Target rules for target CMakeFiles/vb01.dir + +# All Build rule for target. +CMakeFiles/vb01.dir/all: + $(MAKE) -f CMakeFiles/vb01.dir/build.make CMakeFiles/vb01.dir/depend + $(MAKE) -f CMakeFiles/vb01.dir/build.make CMakeFiles/vb01.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/dominykas/c++/FSim/build/CMakeFiles --progress-num=1,2 "Built target vb01" +.PHONY : CMakeFiles/vb01.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/vb01.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/dominykas/c++/FSim/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/vb01.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/dominykas/c++/FSim/build/CMakeFiles 0 +.PHONY : CMakeFiles/vb01.dir/rule + +# Convenience name for target. +vb01: CMakeFiles/vb01.dir/rule + +.PHONY : vb01 + +# clean rule for target. +CMakeFiles/vb01.dir/clean: + $(MAKE) -f CMakeFiles/vb01.dir/build.make CMakeFiles/vb01.dir/clean +.PHONY : CMakeFiles/vb01.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..cddd6c1 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/dominykas/c++/FSim/build/CMakeFiles/rebuild_cache.dir +/home/dominykas/c++/FSim/build/CMakeFiles/vb01.dir +/home/dominykas/c++/FSim/build/CMakeFiles/edit_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/fsim.dir/CXX.includecache b/build/CMakeFiles/fsim.dir/CXX.includecache new file mode 100644 index 0000000..093147a --- /dev/null +++ b/build/CMakeFiles/fsim.dir/CXX.includecache @@ -0,0 +1,22 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/dominykas/c++/FSim/main.cpp +quaternion.h +/home/dominykas/c++/FSim/quaternion.h +vec3.h +/home/dominykas/c++/FSim/vec3.h + +/home/dominykas/c++/FSim/quaternion.h +cmath +- + +/home/dominykas/c++/FSim/vec3.h +cmath +- + diff --git a/build/CMakeFiles/fsim.dir/DependInfo.cmake b/build/CMakeFiles/fsim.dir/DependInfo.cmake new file mode 100644 index 0000000..f6e6cc9 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/DependInfo.cmake @@ -0,0 +1,23 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/dominykas/c++/FSim/main.cpp" "/home/dominykas/c++/FSim/build/CMakeFiles/fsim.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/include/GLFW" + "/usr/include/glm" + "/usr/include/glad" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/fsim.dir/build.make b/build/CMakeFiles/fsim.dir/build.make new file mode 100644 index 0000000..6a7b432 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# 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/dominykas/c++/FSim + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/dominykas/c++/FSim/build + +# Include any dependencies generated for this target. +include CMakeFiles/fsim.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/fsim.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/fsim.dir/flags.make + +CMakeFiles/fsim.dir/main.cpp.o: CMakeFiles/fsim.dir/flags.make +CMakeFiles/fsim.dir/main.cpp.o: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/dominykas/c++/FSim/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/fsim.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/fsim.dir/main.cpp.o -c /home/dominykas/c++/FSim/main.cpp + +CMakeFiles/fsim.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/fsim.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/dominykas/c++/FSim/main.cpp > CMakeFiles/fsim.dir/main.cpp.i + +CMakeFiles/fsim.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/fsim.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/dominykas/c++/FSim/main.cpp -o CMakeFiles/fsim.dir/main.cpp.s + +# Object files for target fsim +fsim_OBJECTS = \ +"CMakeFiles/fsim.dir/main.cpp.o" + +# External object files for target fsim +fsim_EXTERNAL_OBJECTS = + +fsim: CMakeFiles/fsim.dir/main.cpp.o +fsim: CMakeFiles/fsim.dir/build.make +fsim: CMakeFiles/fsim.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/dominykas/c++/FSim/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable fsim" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/fsim.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/fsim.dir/build: fsim + +.PHONY : CMakeFiles/fsim.dir/build + +CMakeFiles/fsim.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/fsim.dir/cmake_clean.cmake +.PHONY : CMakeFiles/fsim.dir/clean + +CMakeFiles/fsim.dir/depend: + cd /home/dominykas/c++/FSim/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/dominykas/c++/FSim /home/dominykas/c++/FSim /home/dominykas/c++/FSim/build /home/dominykas/c++/FSim/build /home/dominykas/c++/FSim/build/CMakeFiles/fsim.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/fsim.dir/depend + diff --git a/build/CMakeFiles/fsim.dir/cmake_clean.cmake b/build/CMakeFiles/fsim.dir/cmake_clean.cmake new file mode 100644 index 0000000..4c5ac88 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/fsim.dir/main.cpp.o" + "fsim" + "fsim.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/fsim.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/fsim.dir/depend.internal b/build/CMakeFiles/fsim.dir/depend.internal new file mode 100644 index 0000000..322d519 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/depend.internal @@ -0,0 +1,7 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/fsim.dir/main.cpp.o + /home/dominykas/c++/FSim/main.cpp + /home/dominykas/c++/FSim/quaternion.h + /home/dominykas/c++/FSim/vec3.h diff --git a/build/CMakeFiles/fsim.dir/depend.make b/build/CMakeFiles/fsim.dir/depend.make new file mode 100644 index 0000000..ce5589c --- /dev/null +++ b/build/CMakeFiles/fsim.dir/depend.make @@ -0,0 +1,7 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/fsim.dir/main.cpp.o: ../main.cpp +CMakeFiles/fsim.dir/main.cpp.o: ../quaternion.h +CMakeFiles/fsim.dir/main.cpp.o: ../vec3.h + diff --git a/build/CMakeFiles/fsim.dir/flags.make b/build/CMakeFiles/fsim.dir/flags.make new file mode 100644 index 0000000..80a6667 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -g + +CXX_DEFINES = + +CXX_INCLUDES = -I/usr/include/GLFW -I/usr/include/glm -I/usr/include/glad + diff --git a/build/CMakeFiles/fsim.dir/link.txt b/build/CMakeFiles/fsim.dir/link.txt new file mode 100644 index 0000000..a010f25 --- /dev/null +++ b/build/CMakeFiles/fsim.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -g -rdynamic CMakeFiles/fsim.dir/main.cpp.o -o fsim diff --git a/build/CMakeFiles/fsim.dir/main.cpp.o b/build/CMakeFiles/fsim.dir/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..a973d10bcb643eaca4401b3028290f6fa36e51ae GIT binary patch literal 3728 zcmbuCc~H|w6vsCNf=Y;psA#Z2%M@Zu6fMe8HOO5RQA9;rNCFWQ6A;3st>A$*A{ea| zD6}$&3RtyxVDKu3T91iZm9bT)iol3sMG?`lirr0ivIcHh3=W`B_7 zKP$k5#R8x~>Qe2i71wNY$o6{#T7UN@8Phhxi#Ka&@((i5u6y z+ym;qstYAh0pzh1JhXRKv`W??sRa_ zecRZryuCFyf+B53HwmmdYIF824oGg6b=h{i-?cbbcESDaOL6DCM$_`%D{*zM*-bZ< zX2nf{uDJ2FbthSsCx)KYZO2fHTD@!VGfHOX*YnnjxPE&NoWEa~r%@exR<&?W)F#g6 zDbuv$@1+aYWFI@-tvxdD;#9xmNtU}yx?0TssPKq>?yt%Y(}>lAtZmuyJk_|!CA~w_ zMiy(`3h#<0FW|n)>=v!~=~2bwS+}Ma^ayJn%FQcsS#}@9Ums&T{muNhH$UV0q+6L8 z@|e&suj>-ASS$rB9w)X=n>`i)3jk&q^qu|msdK7_G>Ev`aBrL6wFg~phN;UO@`d>! zA=jc3_>bF`-Cp;4ORs9@J?S_hZ^P4!%uIEGGuV8u-sMcfWSNcBRujH-_JN5B>L)kL z!@amoy&E~(6ZkphpA@v&rw(`Bb=E%OMaL_^?^Zh!@WR3aVAO5MYALV?d z<-uQqgI;sVxhm>+&QjI&ibe-3zn5W}$jOeXpS#sz<*hqr-k8)-D79JiA%Dz+PK%o2 zJyk3D3oaEGwcQbmJI1O!Z1bwjF1LA1o@+O%oA&~N^#{h==c_Uvt!9kWkQjYtfxbS(bG z>(AKg2Cs-<9(KE5nM#=b8^v!y4H^jy|Zt0|9^!&uW8-uO%k{3XnfQL*+FE z&)yjuW*bgb-%&O&=?k#O2J8X2=>VKF05>0iGcGBHg00^%gXp_#VA+o$zy`blIJX}k z0*N)F4!YVRm0Yq^A&f~%(sckJJ3)HVM=~-a;wbwL1YsMdH-PYTe9lKudI)cp=5zLBaI~&9_M<3%5&H=gC;DuPpThpP6!*q{KE)%k|2@Tnv0p;*8`$4P@dR9- zDvFCR*S(|Q7^&w1%zvfyu9%;rcr@l(il<|r_r~+wr}!6`Kcx6->_4Hn z6ZT(I{8Q|6@O&g6QupB$AA|LLimNdH7;|Kp=Zfru%x{nNGpKovVjfI!vR){~ov^=< z;tD)Z6vZ(%{H9PoW&}cOh5IOsnLl|hGgHr#c94a_4{8_n#_&za0Q&u)w~@%8(0AhT zp%UZ7(78f75^sz3Q=v7sz60K90oD;i;)##)G#0PH@#BdQTRI-q*;xMPv2X&8L;0h( zD2XTe$3kXo{dT=;}B6&8|p(E8}TL*fZff($J+fegStY8w1wWc;h5 z<3xtj1FIm_#p_1jf7RmWM&4Uwgv1fM9>Xv3M7p|1M@Q?9=i80]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/dominykas/c++/FSim/main.cpp +quaternion.h +/home/dominykas/c++/FSim/quaternion.h +vec3.h +/home/dominykas/c++/FSim/vec3.h + +/home/dominykas/c++/FSim/quaternion.h +cmath +- + +/home/dominykas/c++/FSim/vec3.h +cmath +- + diff --git a/build/CMakeFiles/vb01.dir/DependInfo.cmake b/build/CMakeFiles/vb01.dir/DependInfo.cmake new file mode 100644 index 0000000..9c4995e --- /dev/null +++ b/build/CMakeFiles/vb01.dir/DependInfo.cmake @@ -0,0 +1,23 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/dominykas/c++/FSim/main.cpp" "/home/dominykas/c++/FSim/build/CMakeFiles/vb01.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/include/GLFW" + "/usr/include/glm" + "/usr/include/glad" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/vb01.dir/build.make b/build/CMakeFiles/vb01.dir/build.make new file mode 100644 index 0000000..a7d3278 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# 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/dominykas/c++/FSim + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/dominykas/c++/FSim/build + +# Include any dependencies generated for this target. +include CMakeFiles/vb01.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/vb01.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/vb01.dir/flags.make + +CMakeFiles/vb01.dir/main.cpp.o: CMakeFiles/vb01.dir/flags.make +CMakeFiles/vb01.dir/main.cpp.o: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/dominykas/c++/FSim/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/vb01.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/vb01.dir/main.cpp.o -c /home/dominykas/c++/FSim/main.cpp + +CMakeFiles/vb01.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/vb01.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/dominykas/c++/FSim/main.cpp > CMakeFiles/vb01.dir/main.cpp.i + +CMakeFiles/vb01.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/vb01.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/dominykas/c++/FSim/main.cpp -o CMakeFiles/vb01.dir/main.cpp.s + +# Object files for target vb01 +vb01_OBJECTS = \ +"CMakeFiles/vb01.dir/main.cpp.o" + +# External object files for target vb01 +vb01_EXTERNAL_OBJECTS = + +vb01: CMakeFiles/vb01.dir/main.cpp.o +vb01: CMakeFiles/vb01.dir/build.make +vb01: CMakeFiles/vb01.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/dominykas/c++/FSim/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable vb01" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/vb01.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/vb01.dir/build: vb01 + +.PHONY : CMakeFiles/vb01.dir/build + +CMakeFiles/vb01.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/vb01.dir/cmake_clean.cmake +.PHONY : CMakeFiles/vb01.dir/clean + +CMakeFiles/vb01.dir/depend: + cd /home/dominykas/c++/FSim/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/dominykas/c++/FSim /home/dominykas/c++/FSim /home/dominykas/c++/FSim/build /home/dominykas/c++/FSim/build /home/dominykas/c++/FSim/build/CMakeFiles/vb01.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/vb01.dir/depend + diff --git a/build/CMakeFiles/vb01.dir/cmake_clean.cmake b/build/CMakeFiles/vb01.dir/cmake_clean.cmake new file mode 100644 index 0000000..d7523b1 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/vb01.dir/main.cpp.o" + "vb01" + "vb01.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/vb01.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/vb01.dir/depend.internal b/build/CMakeFiles/vb01.dir/depend.internal new file mode 100644 index 0000000..4c2ba26 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/depend.internal @@ -0,0 +1,7 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/vb01.dir/main.cpp.o + /home/dominykas/c++/FSim/main.cpp + /home/dominykas/c++/FSim/quaternion.h + /home/dominykas/c++/FSim/vec3.h diff --git a/build/CMakeFiles/vb01.dir/depend.make b/build/CMakeFiles/vb01.dir/depend.make new file mode 100644 index 0000000..342a765 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/depend.make @@ -0,0 +1,7 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/vb01.dir/main.cpp.o: ../main.cpp +CMakeFiles/vb01.dir/main.cpp.o: ../quaternion.h +CMakeFiles/vb01.dir/main.cpp.o: ../vec3.h + diff --git a/build/CMakeFiles/vb01.dir/flags.make b/build/CMakeFiles/vb01.dir/flags.make new file mode 100644 index 0000000..80a6667 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -g + +CXX_DEFINES = + +CXX_INCLUDES = -I/usr/include/GLFW -I/usr/include/glm -I/usr/include/glad + diff --git a/build/CMakeFiles/vb01.dir/link.txt b/build/CMakeFiles/vb01.dir/link.txt new file mode 100644 index 0000000..69b0519 --- /dev/null +++ b/build/CMakeFiles/vb01.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -g -rdynamic CMakeFiles/vb01.dir/main.cpp.o -o vb01 diff --git a/build/CMakeFiles/vb01.dir/main.cpp.o b/build/CMakeFiles/vb01.dir/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..a973d10bcb643eaca4401b3028290f6fa36e51ae GIT binary patch literal 3728 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 D4^SM? literal 0 HcmV?d00001 diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..d8b56da --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include"quaternion.h" +#include"vec3.h" + +int main(){ + return 0; +} diff --git a/quaternion.h b/quaternion.h new file mode 100644 index 0000000..86b19b9 --- /dev/null +++ b/quaternion.h @@ -0,0 +1,34 @@ +#include + +namespace vb01{ + class quaternion{ + public: + quaternion(float w,float x,float y,float z){ + this->w=w; + this->x=x; + this->y=y; + this->z=z; + } + inline vb01::quaternion operator* (vb01::quaternion q){ + float a1=this->w,a2=q.w, + b1=this->x,b2=q.x, + c1=this->y,c2=q.y, + d1=this->z,d2=q.z; + float w=a1*a2-b1*b2-c1*c2-d1*d2; + float x=a1*b2+b1*a2+c1*d2-d1*c2; + float y=a1*c2-b1*d2+c1*a2+d1*b2; + float z=a1*d2+b1*c2-c1*b2+d1*a2; + return quaternion(w,x,y,z); + } + //inline vb01::quaternion conj(){return -.5*(*this+vb01::QUAT_I*(*this)*vb01::QUAT_I+vb01::QUAT_J*(*this)*vb01::QUAT_J+vb01::QUAT_K*(*this)*vb01::QUAT_K);} + inline vb01::quaternion operator/ (float f){return quaternion(w/f,x/f,y/f,z/f);} + inline vb01::quaternion norm(){return *this/getLength();} + //inline vb01::quaternion recip(){return conj()/getLengthSq();} + inline float getLengthSq(){return w*w+x*x+y*y+z*z;} + inline float getLength(){return std::sqrt(getLengthSq());} + + //static vb01::quaternion QUAT_I=quaternion(0,1,0,0),QUAT_J=quaternion(0,0,1,0),QUAT_K=quaternion(0,0,0,1); + float w,x,y,z; + private: + }; +} diff --git a/vec3.h b/vec3.h new file mode 100644 index 0000000..37dc789 --- /dev/null +++ b/vec3.h @@ -0,0 +1,17 @@ +#include + +namespace vb01{ + class vec3{ + public: + vec3(float x, float y, float z){ + this->x=x; + this->y=y; + this->z=z; + } + inline vec3 operator+ (vec3 v){return vec3(this->x+v.x,this->y+v.y,this->z+v.z);} + inline float dot(vec3 v){return this->x*v.x+this->y*v.y+this->z*v.z;} + + float x,y,z; + private: + }; +}